From 21e0cebb41751bcbcc094d6f99c320ae12c3470b Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Mon, 15 Apr 2024 16:31:57 -0400 Subject: [PATCH 01/37] converting two graphql queries for testing --- .../heimdall_repos/github_utils.py | 12 ++++++------ .../heimdall_repos/repo_layer_env.py | 18 ++++++++---------- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/github_utils.py b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/github_utils.py index 90f5702d..60eec451 100644 --- a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/github_utils.py +++ b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/github_utils.py @@ -46,7 +46,7 @@ def __init__( self.artemis_api_key = artemis_api_key self.redundant_scan_query = redundant_scan_query or {} - def _query_github_api(self, query: str) -> str: + def _query_github_api(self, query: str, variables: dict) -> str: # Query the GitHub API headers = { "Authorization": self._get_authorization(), @@ -58,7 +58,7 @@ def _query_github_api(self, query: str) -> str: response = requests.post( url=self.service_info.url, headers=headers, - json={"query": query}, + json={"query": query, "variables": variables}, timeout=DEFAULT_API_TIMEOUT, ) @@ -140,8 +140,8 @@ def _report_error_response(self, response, error_response): def query_github(self) -> list: self.log.info("Querying for repos in %s starting at cursor %s", self.service_info.org, self.service_info.cursor) - query = GITHUB_REPO_QUERY % (self.service_info.org, self.service_info.cursor) - response_text = self._query_github_api(query) + variables = {"org": self.service_info.org, "cursor": self.service_info.cursor} + response_text = self._query_github_api(GITHUB_REPO_QUERY, variables) if response_text in [GITHUB_RATE_ABUSE_FLAG, GITHUB_TIMEOUT_FLAG]: queue_service_and_org( self.queue, @@ -280,8 +280,8 @@ def _get_ref_names(self, repo: str, default: str, refs: dict) -> Tuple[list, dic cursor = page_info.get("endCursor") while next_page: - query = GITHUB_REPO_REF_QUERY % (self.service_info.org, repo, cursor) - response_text = self._query_github_api(query) + variables = {"org": self.service_info.org, "repo": repo, "cursor": cursor} + response_text = self._query_github_api(GITHUB_REPO_REF_QUERY, variables) if not response_text or response_text in [GITHUB_RATE_ABUSE_FLAG, GITHUB_TIMEOUT_FLAG]: break response_dict = self.json_utils.get_json_from_response(response_text) diff --git a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py index 2cb4f0a8..3fe49aac 100644 --- a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py +++ b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py @@ -38,11 +38,9 @@ """ GITHUB_REPO_QUERY = """ -{ - organization(login: "%s") { - repositories(first: 75, - after: %s, - orderBy: {field: NAME, direction: ASC}) { +query getRepos($org: String!, $cursor: String!) { + organization(login: $org) { + repositories(first: 75, after: $cursor, orderBy: {field: NAME, direction: ASC}) { nodes { name defaultBranchRef { @@ -54,7 +52,7 @@ } } isPrivate - refs(first: 75, refPrefix:"refs/heads/", direction: ASC) { + refs(first: 75, refPrefix: "refs/heads/", direction: ASC) { nodes { name target { @@ -79,10 +77,10 @@ """ GITHUB_REPO_REF_QUERY = """ -{ - organization(login: "%s") { - repository(name: "%s") { - refs(first: 100, refPrefix:"refs/heads/", direction: ASC, after: "%s") { +query getRefs($org: String!, $repo: String!, $cursor: String!) { + organization(login: $org) { + repository(name: $repo) { + refs(first: 100, refPrefix: "refs/heads/", direction: ASC, after: $cursor) { nodes { name target { From 265d64e922a1883583b3c782540530f96bc1a0ae Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 18 Apr 2024 14:02:46 -0400 Subject: [PATCH 02/37] adding another query --- .../api/system_services/system_services/util/service.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/backend/lambdas/api/system_services/system_services/util/service.py b/backend/lambdas/api/system_services/system_services/util/service.py index 0e31fb07..ead2a89f 100644 --- a/backend/lambdas/api/system_services/system_services/util/service.py +++ b/backend/lambdas/api/system_services/system_services/util/service.py @@ -131,15 +131,17 @@ def _test_github(self, key: str): revproxy = True try: query = "" + variables = {} if self._org is not None: - query = 'organization(login: "%s") { login }' % self._org + query = 'query getLogin($org: String!) {organization(login: $org) {login}}' + variables.org = self._org else: query = "viewer { login }" response = requests.post( url=self._service["url"], headers=headers, - json={"query": query}, + json={"query": query, "variables": variables}, timeout=3, ) if response.status_code == 200: From 9649d17b65f2291d8fcd06ede7784568cc041611 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Wed, 24 Apr 2024 13:58:16 -0400 Subject: [PATCH 03/37] adding more variables --- .../heimdall_orgs/org_queue_private_github.py | 11 +++++------ .../heimdall_repos/heimdall_repos/gitlab_utils.py | 2 +- .../heimdall_repos/heimdall_repos/repo_layer_env.py | 6 +++--- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/orchestrator/lambdas/layers/heimdall_orgs/heimdall_orgs/org_queue_private_github.py b/orchestrator/lambdas/layers/heimdall_orgs/heimdall_orgs/org_queue_private_github.py index c5bf09b0..d1590983 100644 --- a/orchestrator/lambdas/layers/heimdall_orgs/heimdall_orgs/org_queue_private_github.py +++ b/orchestrator/lambdas/layers/heimdall_orgs/heimdall_orgs/org_queue_private_github.py @@ -11,8 +11,8 @@ log = Logger(__name__) GITHUB_ORG_QUERY = """ -{ - organizations(first: 100, after: %s){nodes{login}, pageInfo{startCursor, endCursor, hasNextPage}} +query getLogin($cursor: String!) { + organizations(first: 100, after: $cursor){nodes{login}, pageInfo{startCursor, endCursor, hasNextPage}} } """ @@ -78,15 +78,14 @@ def _request_orgs(self, cursor=None) -> Union[dict, None]: if not self.api_url: log.info("Service %s url was not found and therefore deemed unsupported", self.service) return None - query = GITHUB_ORG_QUERY % cursor - response = self._query_service(query) + response = self._query_service(GITHUB_ORG_QUERY, cursor) if not response: log.info("Error retrieving orgs for %s", self.service) return None return response.json() - def _query_service(self, query): + def _query_service(self, query, cursor): if not self.api_url: log.info( "Service %s url was not found and therefore deemed unsupported", @@ -101,7 +100,7 @@ def _query_service(self, query): headers[REV_PROXY_SECRET_HEADER] = GetProxySecret() try: - response = requests.post(url=self.api_url, headers=headers, json={"query": query}, timeout=TIMEOUT) + response = requests.post(url=self.api_url, headers=headers, json={"query": query, "variables": {"cursor": cursor}}, timeout=TIMEOUT) except requests.exceptions.Timeout: log.error("Request timed out after %ss retrieving orgs for %s", TIMEOUT, self.service) return None diff --git a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/gitlab_utils.py b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/gitlab_utils.py index eab9b777..ddd2ba0a 100644 --- a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/gitlab_utils.py +++ b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/gitlab_utils.py @@ -223,7 +223,7 @@ def _query_gitlab_api(self, url) -> str or None: response = requests.post( url=url, headers=self._get_request_headers(url), - json={"query": GITLAB_REPO_QUERY % (self.service_info.org, self.service_info.cursor)}, + json={"query": GITLAB_REPO_QUERY, "variables": {"org": self.service_info.org, "cursor": self.service_info.cursor}}, timeout=DEFAULT_API_TIMEOUT, ) if response.status_code != 200: diff --git a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py index 3fe49aac..1ad432e1 100644 --- a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py +++ b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py @@ -15,10 +15,10 @@ BITBUCKET_PRIVATE_SPECIFIC_BRANCH_QUERY = "$service_url/projects/$org/repos/$repo/branches?start=$cursor&name=$branch" GITLAB_REPO_QUERY = """ -{ - group(fullPath: "%s") { +query getLogin($org: String!, $cursor: String!) { + group(fullPath: $org) { projects(first: 100, - after: %s, + after: $cursor, includeSubgroups: true) { nodes { fullPath From b18abf3d33d9557347e9547c46938d72759a3196 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 25 Apr 2024 12:45:38 -0400 Subject: [PATCH 04/37] working tests --- backend/Pipfile | 2 + backend/Pipfile.lock | 1856 ++++++++++------- .../update_github_org_users/tests/__init__.py | 0 .../tests/test_query_users_for_org.py | 32 + .../update_github_org_users/util/github.py | 43 +- orchestrator/Makefile | 2 +- 6 files changed, 1120 insertions(+), 815 deletions(-) create mode 100644 backend/lambdas/scheduled/update_github_org_users/tests/__init__.py create mode 100644 backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py diff --git a/backend/Pipfile b/backend/Pipfile index 1cb57304..0b19c106 100644 --- a/backend/Pipfile +++ b/backend/Pipfile @@ -18,6 +18,7 @@ pyjwt = "*" cryptography = "*" packaging = "==21.3" urllib3 = "<2" +gql = "*" [dev-packages] pytest = "==6.0.1" @@ -39,6 +40,7 @@ python-dotenv = "*" checkov = "==2.0.1065" aiohttp = "*" gitpython = "*" +responses = "*" [pipenv] allow_prereleases = true diff --git a/backend/Pipfile.lock b/backend/Pipfile.lock index 588944f3..32cc6c3e 100644 --- a/backend/Pipfile.lock +++ b/backend/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "9fa057202a2c2f75bad0b1425c735e5fa25ede17dd991da8672c7791f13c5dc8" + "sha256": "25bd0cc66d411b6cca22174c65416ffce8acfc9bc59fecea36d636d784f6b906" }, "pipfile-spec": 6, "requires": { @@ -16,47 +16,63 @@ ] }, "default": { + "anyio": { + "hashes": [ + "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", + "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6" + ], + "markers": "python_version >= '3.8'", + "version": "==4.3.0" + }, "asgiref": { "hashes": [ - "sha256:89b2ef2247e3b562a16eef663bc0e2e703ec6468e2fa8a5cd61cd449786d4f6e", - "sha256:9e0ce3aa93a819ba5b45120216b23878cf6e8525eb3848653452b4192b92afed" + "sha256:3e1e3ecc849832fe52ccf2cb6686b7a55f82bb1d6aee72a58826471390335e47", + "sha256:c343bd80a0bec947a9860adb4c432ffa7db769836c64238fc34bdc3fec84d590" ], - "markers": "python_version >= '3.7'", - "version": "==3.7.2" + "markers": "python_version >= '3.8'", + "version": "==3.8.1" }, "awscli": { "hashes": [ - "sha256:852b80e8da2296cfe2412ed3ed1df72906215e6e57797090c26f709dbffb3aed", - "sha256:a50387b7c70ef0621de35ec9f11df9adf407e4db24946f8d4ba0c041514728ab" + "sha256:074d7c5cae0e556918a5a45fa1fc5449ade45625739b2c7e640964bd08ba96a4", + "sha256:457e365d33ca0ef27b2d8813909565f78749ad66d2b6113900ff534f2d4f933f" ], "index": "pypi", - "markers": "python_version >= '3.7'", - "version": "==1.29.80" + "markers": "python_version >= '3.8'", + "version": "==1.32.91" + }, + "backoff": { + "hashes": [ + "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba", + "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8" + ], + "markers": "python_version >= '3.7' and python_version < '4.0'", + "version": "==2.2.1" }, "boto3": { "hashes": [ - "sha256:2f43e032ab804a3c39996d524003d2b906e5d86856a32da3427e36912a22d2b7", - "sha256:c48c6e04e43f894881b883a28fd032f16805f6cb2771b85f0c97f3fe34db0a41" + "sha256:5077917041adaaae15eeca340289547ef905ca7e11516e9bd22d394fb5057d2a", + "sha256:97fac686c47647db4b44e4789317e4aeecd38511d71e84f8d20abe33eb630ff1" ], "index": "pypi", - "markers": "python_version >= '3.7'", - "version": "==1.28.80" + "markers": "python_version >= '3.8'", + "version": "==1.34.91" }, "botocore": { "hashes": [ - "sha256:1c693c0f8b2553fcbe0df223241191e6f9f60b4245d65c1822c08f659274fef2", - "sha256:d43fe303530c12efca9be4ec3a9104e8a669f11d1ba9feb18f0284d751a9672c" + "sha256:4d1b13f2b1c28ce1743b1e5895ae62bb7e67f892b51882164ea19c27a130852b", + "sha256:93ef7071292a1b2b9fc26537f8ae3a8227da1177969241939ea3fbdb1a1a1d0c" ], - "markers": "python_version >= '3.7'", - "version": "==1.31.80" + "markers": "python_version >= '3.8'", + "version": "==1.34.91" }, "certifi": { "hashes": [ - "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082", - "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9" + "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", + "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" ], "markers": "python_version >= '3.6'", - "version": "==2023.7.22" + "version": "==2024.2.2" }, "cffi": { "hashes": [ @@ -222,42 +238,42 @@ }, "cryptography": { "hashes": [ - "sha256:01911714117642a3f1792c7f376db572aadadbafcd8d75bb527166009c9f1d1b", - "sha256:0e89f7b84f421c56e7ff69f11c441ebda73b8a8e6488d322ef71746224c20fce", - "sha256:12d341bd42cdb7d4937b0cabbdf2a94f949413ac4504904d0cdbdce4a22cbf88", - "sha256:15a1fb843c48b4a604663fa30af60818cd28f895572386e5f9b8a665874c26e7", - "sha256:1cdcdbd117681c88d717437ada72bdd5be9de117f96e3f4d50dab3f59fd9ab20", - "sha256:1df6fcbf60560d2113b5ed90f072dc0b108d64750d4cbd46a21ec882c7aefce9", - "sha256:3c6048f217533d89f2f8f4f0fe3044bf0b2090453b7b73d0b77db47b80af8dff", - "sha256:3e970a2119507d0b104f0a8e281521ad28fc26f2820687b3436b8c9a5fcf20d1", - "sha256:44a64043f743485925d3bcac548d05df0f9bb445c5fcca6681889c7c3ab12764", - "sha256:4e36685cb634af55e0677d435d425043967ac2f3790ec652b2b88ad03b85c27b", - "sha256:5f8907fcf57392cd917892ae83708761c6ff3c37a8e835d7246ff0ad251d9298", - "sha256:69b22ab6506a3fe483d67d1ed878e1602bdd5912a134e6202c1ec672233241c1", - "sha256:6bfadd884e7280df24d26f2186e4e07556a05d37393b0f220a840b083dc6a824", - "sha256:6d0fbe73728c44ca3a241eff9aefe6496ab2656d6e7a4ea2459865f2e8613257", - "sha256:6ffb03d419edcab93b4b19c22ee80c007fb2d708429cecebf1dd3258956a563a", - "sha256:810bcf151caefc03e51a3d61e53335cd5c7316c0a105cc695f0959f2c638b129", - "sha256:831a4b37accef30cccd34fcb916a5d7b5be3cbbe27268a02832c3e450aea39cb", - "sha256:887623fe0d70f48ab3f5e4dbf234986b1329a64c066d719432d0698522749929", - "sha256:a0298bdc6e98ca21382afe914c642620370ce0470a01e1bef6dd9b5354c36854", - "sha256:a1327f280c824ff7885bdeef8578f74690e9079267c1c8bd7dc5cc5aa065ae52", - "sha256:c1f25b252d2c87088abc8bbc4f1ecbf7c919e05508a7e8628e6875c40bc70923", - "sha256:c3a5cbc620e1e17009f30dd34cb0d85c987afd21c41a74352d1719be33380885", - "sha256:ce8613beaffc7c14f091497346ef117c1798c202b01153a8cc7b8e2ebaaf41c0", - "sha256:d2a27aca5597c8a71abbe10209184e1a8e91c1fd470b5070a2ea60cafec35bcd", - "sha256:dad9c385ba8ee025bb0d856714f71d7840020fe176ae0229de618f14dae7a6e2", - "sha256:db4b65b02f59035037fde0998974d84244a64c3265bdef32a827ab9b63d61b18", - "sha256:e09469a2cec88fb7b078e16d4adec594414397e8879a4341c6ace96013463d5b", - "sha256:e53dc41cda40b248ebc40b83b31516487f7db95ab8ceac1f042626bc43a2f992", - "sha256:f1e85a178384bf19e36779d91ff35c7617c885da487d689b05c1366f9933ad74", - "sha256:f47be41843200f7faec0683ad751e5ef11b9a56a220d57f300376cd8aba81660", - "sha256:fb0cef872d8193e487fc6bdb08559c3aa41b659a7d9be48b2e10747f47863925", - "sha256:ffc73996c4fca3d2b6c1c8c12bfd3ad00def8621da24f547626bf06441400449" + "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee", + "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576", + "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d", + "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30", + "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413", + "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb", + "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da", + "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4", + "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd", + "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc", + "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8", + "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1", + "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc", + "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e", + "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8", + "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940", + "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400", + "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7", + "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16", + "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278", + "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74", + "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec", + "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1", + "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2", + "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c", + "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922", + "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a", + "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6", + "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1", + "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e", + "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac", + "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==42.0.4" + "version": "==42.0.5" }, "cwe": { "hashes": [ @@ -292,13 +308,37 @@ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.16" }, + "exceptiongroup": { + "hashes": [ + "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", + "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" + ], + "markers": "python_version < '3.11'", + "version": "==1.2.1" + }, + "gql": { + "hashes": [ + "sha256:c681d2273cc8164c0d6557c2d6fd4df190a009706a2044cd640be6a24526318e", + "sha256:f1a4fc06186f25e5b4b5abaf3af359bc7ac65b38bcaa705b6507cd29dec2ecbf" + ], + "index": "pypi", + "version": "==3.6.0b2" + }, + "graphql-core": { + "hashes": [ + "sha256:9d72ed2c4ac93682fe55a0a2939548c1b3d23bd7e2ad76f7f8faef4d99d606ec", + "sha256:f3a8ab44a436651608b8e0335800b175c4bb3a7bf0217bbc97babf6d9517218a" + ], + "markers": "python_version >= '3.7' and python_version < '4.0'", + "version": "==3.3.0a5" + }, "idna": { "hashes": [ - "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4", - "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" ], "markers": "python_version >= '3.5'", - "version": "==3.4" + "version": "==3.7" }, "jmespath": { "hashes": [ @@ -308,6 +348,102 @@ "markers": "python_version >= '3.7'", "version": "==1.0.1" }, + "multidict": { + "hashes": [ + "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", + "sha256:0275e35209c27a3f7951e1ce7aaf93ce0d163b28948444bec61dd7badc6d3f8c", + "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", + "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", + "sha256:09a892e4a9fb47331da06948690ae38eaa2426de97b4ccbfafbdcbe5c8f37ff8", + "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", + "sha256:107c0cdefe028703fb5dafe640a409cb146d44a6ae201e55b35a4af8e95457dd", + "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", + "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", + "sha256:19fe01cea168585ba0f678cad6f58133db2aa14eccaf22f88e4a6dccadfad8b3", + "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", + "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", + "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", + "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", + "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", + "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", + "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", + "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", + "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", + "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", + "sha256:37b15024f864916b4951adb95d3a80c9431299080341ab9544ed148091b53f50", + "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", + "sha256:3d25f19500588cbc47dc19081d78131c32637c25804df8414463ec908631e453", + "sha256:403c0911cd5d5791605808b942c88a8155c2592e05332d2bf78f18697a5fa15e", + "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", + "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", + "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", + "sha256:4a6a4f196f08c58c59e0b8ef8ec441d12aee4125a7d4f4fef000ccb22f8d7241", + "sha256:4cc0ef8b962ac7a5e62b9e826bd0cd5040e7d401bc45a6835910ed699037a461", + "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", + "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", + "sha256:55205d03e8a598cfc688c71ca8ea5f66447164efff8869517f175ea632c7cb7b", + "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", + "sha256:5cb241881eefd96b46f89b1a056187ea8e9ba14ab88ba632e68d7a2ecb7aadf7", + "sha256:60d698e8179a42ec85172d12f50b1668254628425a6bd611aba022257cac1386", + "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", + "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", + "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", + "sha256:69db76c09796b313331bb7048229e3bee7928eb62bab5e071e9f7fcc4879caee", + "sha256:6bf7a982604375a8d49b6cc1b781c1747f243d91b81035a9b43a2126c04766f5", + "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", + "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", + "sha256:76f067f5121dcecf0d63a67f29080b26c43c71a98b10c701b0677e4a065fbd54", + "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", + "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", + "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", + "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", + "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", + "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", + "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", + "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", + "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", + "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", + "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", + "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", + "sha256:a3145cb08d8625b2d3fee1b2d596a8766352979c9bffe5d7833e0503d0f0b5e5", + "sha256:aeaf541ddbad8311a87dd695ed9642401131ea39ad7bc8cf3ef3967fd093b626", + "sha256:b55358304d7a73d7bdf5de62494aaf70bd33015831ffd98bc498b433dfe5b10c", + "sha256:b82cc8ace10ab5bd93235dfaab2021c70637005e1ac787031f4d1da63d493c1d", + "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", + "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", + "sha256:c9bf56195c6bbd293340ea82eafd0071cb3d450c703d2c93afb89f93b8386ccc", + "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", + "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", + "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", + "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", + "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", + "sha256:d65f25da8e248202bd47445cec78e0025c0fe7582b23ec69c3b27a640dd7a8e3", + "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", + "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", + "sha256:d946b0a9eb8aaa590df1fe082cee553ceab173e6cb5b03239716338629c50c7a", + "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", + "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", + "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", + "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", + "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", + "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", + "sha256:e4972624066095e52b569e02b5ca97dbd7a7ddd4294bf4e7247d52635630dd83", + "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", + "sha256:e8e94e6912639a02ce173341ff62cc1201232ab86b8a8fcc05572741a5dc7d93", + "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", + "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", + "sha256:eca2e9d0cc5a889850e9bbd68e98314ada174ff6ccd1129500103df7a94a7a44", + "sha256:edd08e6f2f1a390bf137080507e44ccc086353c8e98c657e666c017718561b89", + "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", + "sha256:f2a1dee728b52b33eebff5072817176c172050d44d67befd681609b4746e1c2e", + "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", + "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", + "sha256:fce28b3c8a81b6b36dfac9feb1de115bab619b3c13905b419ec71d03a3fc1423", + "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef" + ], + "markers": "python_version >= '3.7'", + "version": "==6.0.5" + }, "packaging": { "hashes": [ "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb", @@ -319,27 +455,28 @@ }, "pyasn1": { "hashes": [ - "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57", - "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde" + "sha256:3a35ab2c4b5ef98e17dfdec8ab074046fbda76e281c5a706ccd82328cfc8f64c", + "sha256:cca4bb0f2df5504f02f6f8a775b6e416ff9b0b3b16f7ee80b5a3153d9b804473" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", - "version": "==0.5.0" + "markers": "python_version >= '3.8'", + "version": "==0.6.0" }, "pycparser": { "hashes": [ - "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9", - "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" + "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", + "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==2.21" + "markers": "python_version >= '3.8'", + "version": "==2.22" }, "pygithub": { "hashes": [ - "sha256:4b528d5d6f35e991ea5fd3f942f58748f24938805cb7fcf24486546637917337", - "sha256:ecf12c2809c44147bce63b047b3d2e9dac8a41b63e90fcb263c703f64936b97c" + "sha256:0148d7347a1cdeed99af905077010aef81a4dad988b0ba51d4108bf66b443f7e", + "sha256:65b499728be3ce7b0cd2cd760da3b32f0f4d7bc55e5e0677617f90f6564e793e" ], + "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==2.1.1" + "version": "==2.3.0" }, "pyjwt": { "extras": [ @@ -371,26 +508,26 @@ }, "pyparsing": { "hashes": [ - "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb", - "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db" + "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad", + "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742" ], "markers": "python_full_version >= '3.6.8'", - "version": "==3.1.1" + "version": "==3.1.2" }, "python-dateutil": { "hashes": [ - "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", - "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", + "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==2.8.2" + "version": "==2.9.0.post0" }, "pytz": { "hashes": [ - "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b", - "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7" + "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", + "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319" ], - "version": "==2023.3.post1" + "version": "==2024.1" }, "pyyaml": { "hashes": [ @@ -423,6 +560,7 @@ "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4", "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba", "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8", + "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef", "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5", "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd", "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3", @@ -467,11 +605,11 @@ }, "s3transfer": { "hashes": [ - "sha256:10d6923c6359175f264811ef4bf6161a3156ce8e350e705396a7557d6293c33a", - "sha256:fd3889a66f5fe17299fe75b82eae6cf722554edca744ca5d5fe308b104883d2e" + "sha256:5683916b4c724f799e600f41dd9e10a9ff19871bf87623cc8f491cb4f5fa0a19", + "sha256:ceb252b11bcf87080fb7850a224fb6e05c8a776bab8f2b64b7f25b969464839d" ], - "markers": "python_version >= '3.7'", - "version": "==0.7.0" + "markers": "python_version >= '3.8'", + "version": "==0.10.1" }, "simplejson": { "hashes": [ @@ -586,21 +724,29 @@ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, + "sniffio": { + "hashes": [ + "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", + "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc" + ], + "markers": "python_version >= '3.7'", + "version": "==1.3.1" + }, "sqlparse": { "hashes": [ - "sha256:5430a4fe2ac7d0f93e66f1efc6e1338a41884b7ddf2a350cedd20ccc4d9d28f3", - "sha256:d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c" + "sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93", + "sha256:c204494cd97479d0e39f28c93d46c0b2d5959c7b9ab904762ea6c7af211c8663" ], - "markers": "python_version >= '3.5'", - "version": "==0.4.4" + "markers": "python_version >= '3.8'", + "version": "==0.5.0" }, "typing-extensions": { "hashes": [ - "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0", - "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef" + "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", + "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" ], "markers": "python_version >= '3.8'", - "version": "==4.8.0" + "version": "==4.11.0" }, "urllib3": { "hashes": [ @@ -613,179 +759,275 @@ }, "wrapt": { "hashes": [ - "sha256:03e76cc5143af6e9098d61fa195a0683db5aaca7b42209e23d2b79a43a42215b", - "sha256:0b9348a09742013395f4eeff39fc5c23a80186f17f9b6ca6a06b2cd885e34f8b", - "sha256:0c882fe9737760a8208bdb8d69015302732b457a1afbb3572ff9b259dafd74af", - "sha256:11f3ed8f88776fb7631544c191091de320133c88feca999d974456d1e7f45666", - "sha256:1babf7f3f94996e348bb46b22e6f08d638bc4a17c27af690836559b7f4430402", - "sha256:20c9193662f6a39d75deecf5c72c61028d9208af62b1c85ebc88a18788d26d61", - "sha256:275058048bbbb53fb9443bbd6a1ed8d4277a2928a05e1ed0fe4cfd377da90172", - "sha256:300c4cc0b93598e8dbd3a3dc98e643fe537d1068eb0e926e19ae6375feb4a6c5", - "sha256:386b8209eb21feda19d794d4ddcd6501f3d894b5d02063aec2738ec7e33c5c55", - "sha256:38f7304bba1d8aa5a4299afd4afb50c847b697435fcae27efc2140f3598df9ef", - "sha256:393d5afd16ae6935612de05e592a8ee9d178edd17217fe4eb886afa273cb6ec0", - "sha256:3bf47bf011a47010e85d5189f77cadb3b547d8b65a303f072b425a74a3111ef4", - "sha256:3c33ff125192043c87427d1f3c123bc6da35f19cd2c25ae17f3fd26217a764c2", - "sha256:40d2f6ab8f35801e5166b7b35f9532540d796188ec825a2404cf5e3fda2168e1", - "sha256:49cc6b5dedc221529be55ee5bbfae682f6bb118920cbb4464ddb3cae1df583c1", - "sha256:4b3dcebbd538f6f4ef8d677effd29a13f0b96e88ce9d88beb0a300116611f053", - "sha256:4e75f141c576b3f2f2f2fe359329ebe75c417ca4b12a3ade0e9fdeafb140d8d2", - "sha256:56081ed03f12515f6d733677bf9084c864efeeb473db94666f3028df6082d57c", - "sha256:5717a43f61df50dbef56679fa033ca0a493a5010be3cf0ca5bd9cfe12383873f", - "sha256:5e4ed9d034a18ae76ce19c86cfa7d236c37bcb46de3d1a62b9140d18a7b9151d", - "sha256:60a553cf4f0f65da713c7fdcde741d2c6057fe7c3633ccb5e218483fab19de84", - "sha256:62d14b91c1665983d0e34b5206f8e761c423ba3a9c8cf30846a1f3fc5093600d", - "sha256:6988688759294253aaeec30bbec346ad82286c8b2a906555340cd1feeda0961d", - "sha256:6dca87f300b0fc11d0e38145d06c3d6d73cde2427f0f4bdcf5d01bc796c86fe7", - "sha256:6f86916c1e413443f53be9b6a6709bb376ba8ee8cb18d4a2c87561e2f1e5dff5", - "sha256:6f96555ec328714caab0b8bbe9fcd92d16b2f1a6af931931bb80b3d014b1fd51", - "sha256:78c03829fe1dc11eefe2500686a28c343340453a7adc68ecacc4d5f3b8d57dee", - "sha256:79de2f8f907115d0345ea85cf5382f91b8572f71fd81e0407f64ab1f4c1fc812", - "sha256:7be5254cfb1acec9441df89967fc241c5b1023e2c801717d6c758b4e36b113b0", - "sha256:89f133fb105a83edb3faa03bf0c632a9525658238803dfb00f3bbeca73dd915b", - "sha256:8d22ec737a143e1999bb3d8e27228df1d6e117cb419b9aa41c2ed152337a7d22", - "sha256:9166562917559942f803cd9db47b00a53717024f8c71d92b881599096ed6f7e6", - "sha256:95f434c8c5605c11e1624b064316775cb2b1b64bd9d438acefed35fd6662fe10", - "sha256:98a34ad05ff26210570e2f7f70613d801aa45aabb2a3f3276144f830ca84cdb1", - "sha256:998e0012839ec5cb42f68a147daa00c2d86e5c9672abdf7716955ea046756bb0", - "sha256:9cb976d424d0b5366171c03da6eb36df42c86f3959388bef21cbd024fcf2686c", - "sha256:9eba32d17d477f551b14c4bb9be9018ea0ac0ca5c9f9500112e61763479e71aa", - "sha256:a120472cff2ab49da3f32f95a99bb77e95551abc2f2ecc79e769c4f2dc4faaa7", - "sha256:a4536de186986f6077288c977ad73660689cb45a08acf4a69f682388f2824fef", - "sha256:a8d25a7baf089a6530073ae97c2988fceccc7f26f79e90ad3b1ad1bc060a0c3c", - "sha256:a93a9d218473817f4c51ae70958585e69ed8c5c62a7c8fda5a75e148c9ae86a9", - "sha256:ac73fecc83d7c911e95515df49969435ca8a6409d09853be567a6caf36bdc4fd", - "sha256:ae98c52a7397b9827568f64dfd0cc24e84e18bcfedb4b67ae49d8b5a4242b07c", - "sha256:af260f7ce492beb0cea355134bb054a928a9b254827e863c15b105d8699ed52d", - "sha256:b2dea75b91bfabae5c85fb3804dcf9c391febccaac59f1309f2cfb16c83452e1", - "sha256:b582635e7d837f0b21b38e2bc2d00b09605d044fa0ebdef72e6b9534ed277034", - "sha256:bde183fda6bde2cbeac8db7e5f3ac9d223cbd8926426a9d780d05557410815ab", - "sha256:bfebc5fbafc4e8a0b433238feed10ecbf652818b56303c8237a60112e6eeeab5", - "sha256:ca500194268302ca654d2191a709250b504ce9e71214acf503b63cece112656d", - "sha256:cfd7afaa857917192fc78f7719a47386d82be0cbae8bf40522bb00a498314e45", - "sha256:d0c1832ec2c68459c44535747224ae800a8fd22854a173c1ac48305872739927", - "sha256:d1dddc34ef35591d0971c34b64c8d557a8b3d7c1b15f25ee3c88511eeacc5031", - "sha256:d5b9c78afff3995b4dad3ef06c573d6a3ee5229507006bfa03da15e80d62a9cd", - "sha256:d6d6d89cb9cdc33b360eaca9adcfa7cdb603bb88e494734459be34f64c4c4d86", - "sha256:d7a7bd6a773ad928a7e421e4060cc86d39b669c18202cf929c9dc3e5860c4591", - "sha256:d85c9e8ad63910312b6433667b5945ba2763ba4ad217b2602b7c5b23e322c6bf", - "sha256:da090b8ef5a6b2a3ea1593debbfbdabd6795b38f74835e0cb4a50b116ccf2de7", - "sha256:db19ee778cebfbb118333a16464007dc387342947e642fb891958feff733d778", - "sha256:e076113a22bb1c01d160e60dc9f32a14dadabb2750de3e7dc5ab0bc8f3fb6029", - "sha256:e1e811fc46e648154ac8df5443643504f95e45c685517c34b2585e87cb3a1f9a", - "sha256:e5dd9a0df1b423dfbf04cef8b693727ebcbba6ddfc96ab74bfd93f45d1a644fd", - "sha256:ecfe346b1d26e5966013d97bb07325880d8fe900df5ee3ed6ab2e7096fff365a", - "sha256:ed864812649ec6f2e9d3ae49c021d52aa04fe2ef1c8348ebdc3bdde5765cd30e", - "sha256:ee46c29c03ef99cbe4bef0903eede7ebd7263d1a1c0a38f6db8eeccb86c1cb99", - "sha256:ef20742684ba9a5d2147bbf82be38a00e6e67c6af87ed48507f6c4a6c787dec9", - "sha256:f12dfdc7943908f392ede9041a53295825d0fc418494cdbe9de9718f4065ee2d", - "sha256:f270e86dc5210fc120ff4727401649a48b2f81889c09b2762da227ca6004f036", - "sha256:f89bf867a643805b8e041ed551d1ceb74fee0d540aeec03bd0ffb8b19990e040", - "sha256:fbf2264e29f4834eda24438377ba42d7e9571c81e9ff4dd54976a14e3c05dc8e", - "sha256:ff586b8183af4be687749735adc2dcf86eae6874953f0a4f1309073b47154ff4" + "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc", + "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81", + "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09", + "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e", + "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca", + "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0", + "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb", + "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487", + "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40", + "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c", + "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060", + "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202", + "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41", + "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9", + "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b", + "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664", + "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d", + "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362", + "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00", + "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc", + "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1", + "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267", + "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956", + "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966", + "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1", + "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228", + "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72", + "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d", + "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292", + "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0", + "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0", + "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36", + "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c", + "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5", + "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f", + "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73", + "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b", + "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2", + "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593", + "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39", + "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389", + "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf", + "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf", + "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89", + "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c", + "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c", + "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f", + "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440", + "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465", + "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136", + "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b", + "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8", + "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3", + "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8", + "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6", + "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e", + "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f", + "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c", + "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e", + "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8", + "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2", + "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020", + "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35", + "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d", + "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3", + "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537", + "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809", + "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d", + "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a", + "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4" ], "markers": "python_version >= '3.6'", - "version": "==1.16.0rc2" + "version": "==1.16.0" + }, + "yarl": { + "hashes": [ + "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", + "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce", + "sha256:07574b007ee20e5c375a8fe4a0789fad26db905f9813be0f9fef5a68080de559", + "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", + "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", + "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", + "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4", + "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c", + "sha256:206a55215e6d05dbc6c98ce598a59e6fbd0c493e2de4ea6cc2f4934d5a18d130", + "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136", + "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e", + "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec", + "sha256:2b134fd795e2322b7684155b7855cc99409d10b2e408056db2b93b51a52accc7", + "sha256:2d47552b6e52c3319fede1b60b3de120fe83bde9b7bddad11a69fb0af7db32f1", + "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455", + "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099", + "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", + "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", + "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", + "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98", + "sha256:4aa9741085f635934f3a2583e16fcf62ba835719a8b2b28fb2917bb0537c1dfa", + "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", + "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525", + "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c", + "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9", + "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c", + "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8", + "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b", + "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", + "sha256:5a2e2433eb9344a163aced6a5f6c9222c0786e5a9e9cac2c89f0b28433f56e23", + "sha256:5aef935237d60a51a62b86249839b51345f47564208c6ee615ed2a40878dccdd", + "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27", + "sha256:63b20738b5aac74e239622d2fe30df4fca4942a86e31bf47a81a0e94c14df94f", + "sha256:686a0c2f85f83463272ddffd4deb5e591c98aac1897d65e92319f729c320eece", + "sha256:6a962e04b8f91f8c4e5917e518d17958e3bdee71fd1d8b88cdce74dd0ebbf434", + "sha256:6ad6d10ed9b67a382b45f29ea028f92d25bc0bc1daf6c5b801b90b5aa70fb9ec", + "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", + "sha256:6fe79f998a4052d79e1c30eeb7d6c1c1056ad33300f682465e1b4e9b5a188b78", + "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d", + "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863", + "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53", + "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31", + "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15", + "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5", + "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b", + "sha256:84fc30f71689d7fc9168b92788abc977dc8cefa806909565fc2951d02f6b7d57", + "sha256:8619d6915b3b0b34420cf9b2bb6d81ef59d984cb0fde7544e9ece32b4b3043c3", + "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1", + "sha256:8be9e837ea9113676e5754b43b940b50cce76d9ed7d2461df1af39a8ee674d9f", + "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", + "sha256:957b4774373cf6f709359e5c8c4a0af9f6d7875db657adb0feaf8d6cb3c3964c", + "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", + "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", + "sha256:a00862fb23195b6b8322f7d781b0dc1d82cb3bcac346d1e38689370cc1cc398b", + "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2", + "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b", + "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9", + "sha256:a825ec844298c791fd28ed14ed1bffc56a98d15b8c58a20e0e08c1f5f2bea1be", + "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e", + "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", + "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", + "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", + "sha256:ad4d7a90a92e528aadf4965d685c17dacff3df282db1121136c382dc0b6014d2", + "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392", + "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91", + "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541", + "sha256:bef596fdaa8f26e3d66af846bbe77057237cb6e8efff8cd7cc8dff9a62278bbf", + "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572", + "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66", + "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575", + "sha256:c74018551e31269d56fab81a728f683667e7c28c04e807ba08f8c9e3bba32f14", + "sha256:ca06675212f94e7a610e85ca36948bb8fc023e458dd6c63ef71abfd482481aa5", + "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1", + "sha256:d25039a474c4c72a5ad4b52495056f843a7ff07b632c1b92ea9043a3d9950f6e", + "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551", + "sha256:d7d7f7de27b8944f1fee2c26a88b4dabc2409d2fea7a9ed3df79b67277644e17", + "sha256:d7eeb6d22331e2fd42fce928a81c697c9ee2d51400bd1a28803965883e13cead", + "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0", + "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe", + "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234", + "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0", + "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7", + "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34", + "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42", + "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385", + "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", + "sha256:ec61d826d80fc293ed46c9dd26995921e3a82146feacd952ef0757236fc137be", + "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958", + "sha256:f3bc6af6e2b8f92eced34ef6a96ffb248e863af20ef4fde9448cc8c9b858b749", + "sha256:f7d6b36dd2e029b6bcb8a13cf19664c7b8e19ab3a58e0fefbb5b8461447ed5ec" + ], + "markers": "python_version >= '3.7'", + "version": "==1.9.4" } }, "develop": { "aiodns": { "hashes": [ - "sha256:1073eac48185f7a4150cad7f96a5192d6911f12b4fb894de80a088508c9b3a99", - "sha256:a387b63da4ced6aad35b1dda2d09620ad608a1c7c0fb71efa07ebb4cd511928d" + "sha256:62869b23409349c21b072883ec8998316b234c9a9e36675756e8e317e8768f72", + "sha256:e443c0c27b07da3174a109fd9e736d69058d808f144d3c9d56dbd1776964c5f5" ], - "version": "==3.1.1" + "version": "==3.2.0" }, "aiohttp": { "hashes": [ - "sha256:017a21b0df49039c8f46ca0971b3a7fdc1f56741ab1240cb90ca408049766168", - "sha256:039df344b45ae0b34ac885ab5b53940b174530d4dd8a14ed8b0e2155b9dddccb", - "sha256:055ce4f74b82551678291473f66dc9fb9048a50d8324278751926ff0ae7715e5", - "sha256:06a9b2c8837d9a94fae16c6223acc14b4dfdff216ab9b7202e07a9a09541168f", - "sha256:07b837ef0d2f252f96009e9b8435ec1fef68ef8b1461933253d318748ec1acdc", - "sha256:0ed621426d961df79aa3b963ac7af0d40392956ffa9be022024cd16297b30c8c", - "sha256:0fa43c32d1643f518491d9d3a730f85f5bbaedcbd7fbcae27435bb8b7a061b29", - "sha256:1f5a71d25cd8106eab05f8704cd9167b6e5187bcdf8f090a66c6d88b634802b4", - "sha256:1f5cd333fcf7590a18334c90f8c9147c837a6ec8a178e88d90a9b96ea03194cc", - "sha256:27468897f628c627230dba07ec65dc8d0db566923c48f29e084ce382119802bc", - "sha256:298abd678033b8571995650ccee753d9458dfa0377be4dba91e4491da3f2be63", - "sha256:2c895a656dd7e061b2fd6bb77d971cc38f2afc277229ce7dd3552de8313a483e", - "sha256:361a1026c9dd4aba0109e4040e2aecf9884f5cfe1b1b1bd3d09419c205e2e53d", - "sha256:363afe77cfcbe3a36353d8ea133e904b108feea505aa4792dad6585a8192c55a", - "sha256:38a19bc3b686ad55804ae931012f78f7a534cce165d089a2059f658f6c91fa60", - "sha256:38f307b41e0bea3294a9a2a87833191e4bcf89bb0365e83a8be3a58b31fb7f38", - "sha256:3e59c23c52765951b69ec45ddbbc9403a8761ee6f57253250c6e1536cacc758b", - "sha256:4b4af9f25b49a7be47c0972139e59ec0e8285c371049df1a63b6ca81fdd216a2", - "sha256:504b6981675ace64c28bf4a05a508af5cde526e36492c98916127f5a02354d53", - "sha256:50fca156d718f8ced687a373f9e140c1bb765ca16e3d6f4fe116e3df7c05b2c5", - "sha256:522a11c934ea660ff8953eda090dcd2154d367dec1ae3c540aff9f8a5c109ab4", - "sha256:52df73f14ed99cee84865b95a3d9e044f226320a87af208f068ecc33e0c35b96", - "sha256:595f105710293e76b9dc09f52e0dd896bd064a79346234b521f6b968ffdd8e58", - "sha256:59c26c95975f26e662ca78fdf543d4eeaef70e533a672b4113dd888bd2423caa", - "sha256:5bce0dc147ca85caa5d33debc4f4d65e8e8b5c97c7f9f660f215fa74fc49a321", - "sha256:5eafe2c065df5401ba06821b9a054d9cb2848867f3c59801b5d07a0be3a380ae", - "sha256:5ed3e046ea7b14938112ccd53d91c1539af3e6679b222f9469981e3dac7ba1ce", - "sha256:5fe9ce6c09668063b8447f85d43b8d1c4e5d3d7e92c63173e6180b2ac5d46dd8", - "sha256:648056db9a9fa565d3fa851880f99f45e3f9a771dd3ff3bb0c048ea83fb28194", - "sha256:69361bfdca5468c0488d7017b9b1e5ce769d40b46a9f4a2eed26b78619e9396c", - "sha256:6b0e029353361f1746bac2e4cc19b32f972ec03f0f943b390c4ab3371840aabf", - "sha256:6b88f9386ff1ad91ace19d2a1c0225896e28815ee09fc6a8932fded8cda97c3d", - "sha256:770d015888c2a598b377bd2f663adfd947d78c0124cfe7b959e1ef39f5b13869", - "sha256:7943c414d3a8d9235f5f15c22ace69787c140c80b718dcd57caaade95f7cd93b", - "sha256:7cf5c9458e1e90e3c390c2639f1017a0379a99a94fdfad3a1fd966a2874bba52", - "sha256:7f46acd6a194287b7e41e87957bfe2ad1ad88318d447caf5b090012f2c5bb528", - "sha256:82e6aa28dd46374f72093eda8bcd142f7771ee1eb9d1e223ff0fa7177a96b4a5", - "sha256:835a55b7ca49468aaaac0b217092dfdff370e6c215c9224c52f30daaa735c1c1", - "sha256:84871a243359bb42c12728f04d181a389718710129b36b6aad0fc4655a7647d4", - "sha256:8aacb477dc26797ee089721536a292a664846489c49d3ef9725f992449eda5a8", - "sha256:8e2c45c208c62e955e8256949eb225bd8b66a4c9b6865729a786f2aa79b72e9d", - "sha256:90842933e5d1ff760fae6caca4b2b3edba53ba8f4b71e95dacf2818a2aca06f7", - "sha256:938a9653e1e0c592053f815f7028e41a3062e902095e5a7dc84617c87267ebd5", - "sha256:939677b61f9d72a4fa2a042a5eee2a99a24001a67c13da113b2e30396567db54", - "sha256:9d3c9b50f19704552f23b4eaea1fc082fdd82c63429a6506446cbd8737823da3", - "sha256:a6fe5571784af92b6bc2fda8d1925cccdf24642d49546d3144948a6a1ed58ca5", - "sha256:a78ed8a53a1221393d9637c01870248a6f4ea5b214a59a92a36f18151739452c", - "sha256:ab40e6251c3873d86ea9b30a1ac6d7478c09277b32e14745d0d3c6e76e3c7e29", - "sha256:abf151955990d23f84205286938796c55ff11bbfb4ccfada8c9c83ae6b3c89a3", - "sha256:acef0899fea7492145d2bbaaaec7b345c87753168589cc7faf0afec9afe9b747", - "sha256:b40670ec7e2156d8e57f70aec34a7216407848dfe6c693ef131ddf6e76feb672", - "sha256:b791a3143681a520c0a17e26ae7465f1b6f99461a28019d1a2f425236e6eedb5", - "sha256:b955ed993491f1a5da7f92e98d5dad3c1e14dc175f74517c4e610b1f2456fb11", - "sha256:ba39e9c8627edc56544c8628cc180d88605df3892beeb2b94c9bc857774848ca", - "sha256:bca77a198bb6e69795ef2f09a5f4c12758487f83f33d63acde5f0d4919815768", - "sha256:c3452ea726c76e92f3b9fae4b34a151981a9ec0a4847a627c43d71a15ac32aa6", - "sha256:c46956ed82961e31557b6857a5ca153c67e5476972e5f7190015018760938da2", - "sha256:c7c8b816c2b5af5c8a436df44ca08258fc1a13b449393a91484225fcb7545533", - "sha256:cd73265a9e5ea618014802ab01babf1940cecb90c9762d8b9e7d2cc1e1969ec6", - "sha256:dad46e6f620574b3b4801c68255492e0159d1712271cc99d8bdf35f2043ec266", - "sha256:dc9b311743a78043b26ffaeeb9715dc360335e5517832f5a8e339f8a43581e4d", - "sha256:df822ee7feaaeffb99c1a9e5e608800bd8eda6e5f18f5cfb0dc7eeb2eaa6bbec", - "sha256:e083c285857b78ee21a96ba1eb1b5339733c3563f72980728ca2b08b53826ca5", - "sha256:e5e46b578c0e9db71d04c4b506a2121c0cb371dd89af17a0586ff6769d4c58c1", - "sha256:e99abf0bba688259a496f966211c49a514e65afa9b3073a1fcee08856e04425b", - "sha256:ee43080e75fc92bf36219926c8e6de497f9b247301bbf88c5c7593d931426679", - "sha256:f033d80bc6283092613882dfe40419c6a6a1527e04fc69350e87a9df02bbc283", - "sha256:f1088fa100bf46e7b398ffd9904f4808a0612e1d966b4aa43baa535d1b6341eb", - "sha256:f56455b0c2c7cc3b0c584815264461d07b177f903a04481dfc33e08a89f0c26b", - "sha256:f59dfe57bb1ec82ac0698ebfcdb7bcd0e99c255bd637ff613760d5f33e7c81b3", - "sha256:f7217af2e14da0856e082e96ff637f14ae45c10a5714b63c77f26d8884cf1051", - "sha256:f734e38fd8666f53da904c52a23ce517f1b07722118d750405af7e4123933511", - "sha256:f95511dd5d0e05fd9728bac4096319f80615aaef4acbecb35a990afebe953b0e", - "sha256:fdd215b7b7fd4a53994f238d0f46b7ba4ac4c0adb12452beee724ddd0743ae5d", - "sha256:feeb18a801aacb098220e2c3eea59a512362eb408d4afd0c242044c33ad6d542", - "sha256:ff30218887e62209942f91ac1be902cc80cddb86bf00fbc6783b7a43b2bea26f" + "sha256:0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8", + "sha256:0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c", + "sha256:0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475", + "sha256:1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed", + "sha256:18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf", + "sha256:239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372", + "sha256:2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81", + "sha256:320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f", + "sha256:38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1", + "sha256:3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd", + "sha256:393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a", + "sha256:3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb", + "sha256:3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46", + "sha256:4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de", + "sha256:4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78", + "sha256:45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c", + "sha256:4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771", + "sha256:471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb", + "sha256:4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430", + "sha256:4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233", + "sha256:52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156", + "sha256:55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9", + "sha256:5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59", + "sha256:5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888", + "sha256:5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c", + "sha256:60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c", + "sha256:6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da", + "sha256:639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424", + "sha256:66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2", + "sha256:67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb", + "sha256:694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8", + "sha256:6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a", + "sha256:702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10", + "sha256:714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0", + "sha256:7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09", + "sha256:7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031", + "sha256:82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4", + "sha256:84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3", + "sha256:8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa", + "sha256:88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a", + "sha256:8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe", + "sha256:8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a", + "sha256:8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2", + "sha256:8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1", + "sha256:93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323", + "sha256:9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b", + "sha256:9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b", + "sha256:9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106", + "sha256:a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac", + "sha256:a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6", + "sha256:ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832", + "sha256:afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75", + "sha256:b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6", + "sha256:c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d", + "sha256:c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72", + "sha256:c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db", + "sha256:c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a", + "sha256:c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da", + "sha256:c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678", + "sha256:c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b", + "sha256:cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24", + "sha256:d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed", + "sha256:d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f", + "sha256:d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e", + "sha256:da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58", + "sha256:da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a", + "sha256:e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342", + "sha256:e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558", + "sha256:e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2", + "sha256:edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551", + "sha256:f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595", + "sha256:f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee", + "sha256:f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11", + "sha256:f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d", + "sha256:fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7", + "sha256:ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.9.3" + "version": "==3.9.5" }, "aiomultiprocess": { "hashes": [ - "sha256:07e7d5657697678d9d2825d4732dfd7655139762dee665167380797c02c68848", - "sha256:3036c4c881cfbc63674686e036097f22309017c6bf96b04722a542ac9cac7423" + "sha256:3a7b3bb3c38dbfb4d9d1194ece5934b6d32cf0280e8edbe64a7d215bba1322c6", + "sha256:f0231dbe0291e15325d7896ebeae0002d95a4f2675426ca05eb35f24c60e495b" ], - "markers": "python_version >= '3.6'", - "version": "==0.9.0" + "markers": "python_version >= '3.8'", + "version": "==0.9.1" }, "aiosignal": { "hashes": [ @@ -805,19 +1047,19 @@ }, "argcomplete": { "hashes": [ - "sha256:72558ba729e4c468572609817226fb0a6e7e9a0a7d477b882be168c0b4a62b94", - "sha256:fbe56f8cda08aa9a04b307d8482ea703e96a6a801611acb4be9bf3942017989f" + "sha256:c168c3723482c031df3c207d4ba8fa702717ccb9fc0bfe4117166c1f537b4a54", + "sha256:fd03ff4a5b9e6580569d34b273f741e85cd9e072f3feeeee3eba4891c70eda62" ], "markers": "python_version >= '3.8'", - "version": "==3.1.4" + "version": "==3.3.0" }, "astroid": { "hashes": [ - "sha256:7d5895c9825e18079c5aeac0572bc2e4c83205c95d416e0b4fee8bc361d2d9ca", - "sha256:86b0bb7d7da0be1a7c4aedb7974e391b32d4ed89e33de6ed6902b4b15c97577e" + "sha256:951798f922990137ac090c53af473db7ab4e70c770e6d7fae0cec59f74411819", + "sha256:ac248253bfa4bd924a0de213707e7ebeeb3138abeb48d798784ead1e56d419d4" ], "markers": "python_full_version >= '3.8.0'", - "version": "==3.0.1" + "version": "==3.1.0" }, "async-timeout": { "hashes": [ @@ -837,28 +1079,28 @@ }, "autopep8": { "hashes": [ - "sha256:067959ca4a07b24dbd5345efa8325f5f58da4298dab0dde0443d5ed765de80cb", - "sha256:2913064abd97b3419d1cc83ea71f042cb821f87e45b9c88cad5ad3c4ea87fe0c" + "sha256:1fa8964e4618929488f4ec36795c7ff12924a68b8bf01366c094fc52f770b6e7", + "sha256:2bb76888c5edbcafe6aabab3c47ba534f5a2c2d245c2eddced4a30c4b4946357" ], "index": "pypi", - "markers": "python_version >= '3.6'", - "version": "==2.0.4" + "markers": "python_version >= '3.8'", + "version": "==2.1.0" }, "aws-sam-translator": { "hashes": [ - "sha256:6f0c6bbcebcc98c4f98dc238352a06b0befe7fb72535cca75712fffff4873875", - "sha256:990f3043d00b6fd801b38ad780ecd058c315b7581b2e43fc013c9b6253f876e8" + "sha256:40cef8980d656107406dafe30aef34b67be33929d2b9492e93f8e9ce07ece1c1", + "sha256:80f4fb6d53774634b6ea84af5fdfa9ad94a46945bc4ad4ef11c8008540dfa7f8" ], - "markers": "python_version >= '3.7' and python_version != '4.0' and python_version <= '4.0'", - "version": "==1.79.0" + "markers": "python_version >= '3.8' and python_version != '4.0' and python_version <= '4.0'", + "version": "==1.87.0" }, "aws-xray-sdk": { "hashes": [ - "sha256:0bbfdbc773cfef4061062ac940b85e408297a2242f120bcdfee2593209b1e432", - "sha256:f6803832dc08d18cc265e2327a69bfa9ee41c121fac195edc9745d04b7a566c3" + "sha256:816186126917bc35ae4e6e2f304702a43d494ecef34a39e6330f5018bdecc9f5", + "sha256:d18604a8688b4bed03ce4a858cc9acd72b71400e085bf7512fc31cf657ca85f9" ], "markers": "python_version >= '3.7'", - "version": "==2.12.1" + "version": "==2.13.0" }, "bc-python-hcl2": { "hashes": [ @@ -870,11 +1112,11 @@ }, "beautifulsoup4": { "hashes": [ - "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da", - "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a" + "sha256:7e05ad0b6c26108d9990e2235e8a9b4e2c03ead6f391ceb60347f8ebea6b80ba", + "sha256:c684ddec071aa120819889aa9e8940f85c3f3cdaa08e23b9fa26510387897bd5" ], "markers": "python_full_version >= '3.6.0'", - "version": "==4.12.2" + "version": "==4.13.0b2" }, "black": { "hashes": [ @@ -915,20 +1157,20 @@ }, "boto3": { "hashes": [ - "sha256:2f43e032ab804a3c39996d524003d2b906e5d86856a32da3427e36912a22d2b7", - "sha256:c48c6e04e43f894881b883a28fd032f16805f6cb2771b85f0c97f3fe34db0a41" + "sha256:5077917041adaaae15eeca340289547ef905ca7e11516e9bd22d394fb5057d2a", + "sha256:97fac686c47647db4b44e4789317e4aeecd38511d71e84f8d20abe33eb630ff1" ], "index": "pypi", - "markers": "python_version >= '3.7'", - "version": "==1.28.80" + "markers": "python_version >= '3.8'", + "version": "==1.34.91" }, "botocore": { "hashes": [ - "sha256:1c693c0f8b2553fcbe0df223241191e6f9f60b4245d65c1822c08f659274fef2", - "sha256:d43fe303530c12efca9be4ec3a9104e8a669f11d1ba9feb18f0284d751a9672c" + "sha256:4d1b13f2b1c28ce1743b1e5895ae62bb7e67f892b51882164ea19c27a130852b", + "sha256:93ef7071292a1b2b9fc26537f8ae3a8227da1177969241939ea3fbdb1a1a1d0c" ], - "markers": "python_version >= '3.7'", - "version": "==1.31.80" + "markers": "python_version >= '3.8'", + "version": "==1.34.91" }, "cached-property": { "hashes": [ @@ -939,19 +1181,19 @@ }, "cachetools": { "hashes": [ - "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2", - "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1" + "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945", + "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105" ], "markers": "python_version >= '3.7'", - "version": "==5.3.2" + "version": "==5.3.3" }, "certifi": { "hashes": [ - "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082", - "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9" + "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", + "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" ], "markers": "python_version >= '3.6'", - "version": "==2023.7.22" + "version": "==2024.2.2" }, "cffi": { "hashes": [ @@ -1008,7 +1250,7 @@ "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956", "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357" ], - "markers": "python_version >= '3.8'", + "markers": "platform_python_implementation != 'PyPy'", "version": "==1.16.0" }, "cfn-lint": { @@ -1175,91 +1417,100 @@ }, "coverage": { "hashes": [ - "sha256:0cbf38419fb1a347aaf63481c00f0bdc86889d9fbf3f25109cf96c26b403fda1", - "sha256:12d15ab5833a997716d76f2ac1e4b4d536814fc213c85ca72756c19e5a6b3d63", - "sha256:149de1d2401ae4655c436a3dced6dd153f4c3309f599c3d4bd97ab172eaf02d9", - "sha256:1981f785239e4e39e6444c63a98da3a1db8e971cb9ceb50a945ba6296b43f312", - "sha256:2443cbda35df0d35dcfb9bf8f3c02c57c1d6111169e3c85fc1fcc05e0c9f39a3", - "sha256:289fe43bf45a575e3ab10b26d7b6f2ddb9ee2dba447499f5401cfb5ecb8196bb", - "sha256:2f11cc3c967a09d3695d2a6f03fb3e6236622b93be7a4b5dc09166a861be6d25", - "sha256:307adb8bd3abe389a471e649038a71b4eb13bfd6b7dd9a129fa856f5c695cf92", - "sha256:310b3bb9c91ea66d59c53fa4989f57d2436e08f18fb2f421a1b0b6b8cc7fffda", - "sha256:315a989e861031334d7bee1f9113c8770472db2ac484e5b8c3173428360a9148", - "sha256:3a4006916aa6fee7cd38db3bfc95aa9c54ebb4ffbfc47c677c8bba949ceba0a6", - "sha256:3c7bba973ebee5e56fe9251300c00f1579652587a9f4a5ed8404b15a0471f216", - "sha256:4175e10cc8dda0265653e8714b3174430b07c1dca8957f4966cbd6c2b1b8065a", - "sha256:43668cabd5ca8258f5954f27a3aaf78757e6acf13c17604d89648ecc0cc66640", - "sha256:4cbae1051ab791debecc4a5dcc4a1ff45fc27b91b9aee165c8a27514dd160836", - "sha256:5c913b556a116b8d5f6ef834038ba983834d887d82187c8f73dec21049abd65c", - "sha256:5f7363d3b6a1119ef05015959ca24a9afc0ea8a02c687fe7e2d557705375c01f", - "sha256:630b13e3036e13c7adc480ca42fa7afc2a5d938081d28e20903cf7fd687872e2", - "sha256:72c0cfa5250f483181e677ebc97133ea1ab3eb68645e494775deb6a7f6f83901", - "sha256:7dbc3ed60e8659bc59b6b304b43ff9c3ed858da2839c78b804973f613d3e92ed", - "sha256:88ed2c30a49ea81ea3b7f172e0269c182a44c236eb394718f976239892c0a27a", - "sha256:89a937174104339e3a3ffcf9f446c00e3a806c28b1841c63edb2b369310fd074", - "sha256:9028a3871280110d6e1aa2df1afd5ef003bab5fb1ef421d6dc748ae1c8ef2ebc", - "sha256:99b89d9f76070237975b315b3d5f4d6956ae354a4c92ac2388a5695516e47c84", - "sha256:9f805d62aec8eb92bab5b61c0f07329275b6f41c97d80e847b03eb894f38d083", - "sha256:a889ae02f43aa45032afe364c8ae84ad3c54828c2faa44f3bfcafecb5c96b02f", - "sha256:aa72dbaf2c2068404b9870d93436e6d23addd8bbe9295f49cbca83f6e278179c", - "sha256:ac8c802fa29843a72d32ec56d0ca792ad15a302b28ca6203389afe21f8fa062c", - "sha256:ae97af89f0fbf373400970c0a21eef5aa941ffeed90aee43650b81f7d7f47637", - "sha256:af3d828d2c1cbae52d34bdbb22fcd94d1ce715d95f1a012354a75e5913f1bda2", - "sha256:b4275802d16882cf9c8b3d057a0839acb07ee9379fa2749eca54efbce1535b82", - "sha256:b4767da59464bb593c07afceaddea61b154136300881844768037fd5e859353f", - "sha256:b631c92dfe601adf8f5ebc7fc13ced6bb6e9609b19d9a8cd59fa47c4186ad1ce", - "sha256:be32ad29341b0170e795ca590e1c07e81fc061cb5b10c74ce7203491484404ef", - "sha256:beaa5c1b4777f03fc63dfd2a6bd820f73f036bfb10e925fce067b00a340d0f3f", - "sha256:c0ba320de3fb8c6ec16e0be17ee1d3d69adcda99406c43c0409cb5c41788a611", - "sha256:c9eacf273e885b02a0273bb3a2170f30e2d53a6d53b72dbe02d6701b5296101c", - "sha256:cb536f0dcd14149425996821a168f6e269d7dcd2c273a8bff8201e79f5104e76", - "sha256:d1bc430677773397f64a5c88cb522ea43175ff16f8bfcc89d467d974cb2274f9", - "sha256:d1c88ec1a7ff4ebca0219f5b1ef863451d828cccf889c173e1253aa84b1e07ce", - "sha256:d3d9df4051c4a7d13036524b66ecf7a7537d14c18a384043f30a303b146164e9", - "sha256:d51ac2a26f71da1b57f2dc81d0e108b6ab177e7d30e774db90675467c847bbdf", - "sha256:d872145f3a3231a5f20fd48500274d7df222e291d90baa2026cc5152b7ce86bf", - "sha256:d8f17966e861ff97305e0801134e69db33b143bbfb36436efb9cfff6ec7b2fd9", - "sha256:dbc1b46b92186cc8074fee9d9fbb97a9dd06c6cbbef391c2f59d80eabdf0faa6", - "sha256:e10c39c0452bf6e694511c901426d6b5ac005acc0f78ff265dbe36bf81f808a2", - "sha256:e267e9e2b574a176ddb983399dec325a80dbe161f1a32715c780b5d14b5f583a", - "sha256:f47d39359e2c3779c5331fc740cf4bce6d9d680a7b4b4ead97056a0ae07cb49a", - "sha256:f6e9589bd04d0461a417562649522575d8752904d35c12907d8c9dfeba588faf", - "sha256:f94b734214ea6a36fe16e96a70d941af80ff3bfd716c141300d95ebc85339738", - "sha256:fa28e909776dc69efb6ed975a63691bc8172b64ff357e663a1bb06ff3c9b589a", - "sha256:fe494faa90ce6381770746077243231e0b83ff3f17069d748f645617cefe19d4" + "sha256:075299460948cd12722a970c7eae43d25d37989da682997687b34ae6b87c0ef0", + "sha256:07dfdd492d645eea1bd70fb1d6febdcf47db178b0d99161d8e4eed18e7f62fe7", + "sha256:0cbdf2cae14a06827bec50bd58e49249452d211d9caddd8bd80e35b53cb04631", + "sha256:2055c4fb9a6ff624253d432aa471a37202cd8f458c033d6d989be4499aed037b", + "sha256:262fffc1f6c1a26125d5d573e1ec379285a3723363f3bd9c83923c9593a2ac25", + "sha256:280132aada3bc2f0fac939a5771db4fbb84f245cb35b94fae4994d4c1f80dae7", + "sha256:2b57780b51084d5223eee7b59f0d4911c31c16ee5aa12737c7a02455829ff067", + "sha256:2bd7065249703cbeb6d4ce679c734bef0ee69baa7bff9724361ada04a15b7e3b", + "sha256:3235d7c781232e525b0761730e052388a01548bd7f67d0067a253887c6e8df46", + "sha256:33c020d3322662e74bc507fb11488773a96894aa82a622c35a5a28673c0c26f5", + "sha256:357754dcdfd811462a725e7501a9b4556388e8ecf66e79df6f4b988fa3d0b39a", + "sha256:39793731182c4be939b4be0cdecde074b833f6171313cf53481f869937129ed3", + "sha256:3c2b77f295edb9fcdb6a250f83e6481c679335ca7e6e4a955e4290350f2d22a4", + "sha256:41327143c5b1d715f5f98a397608f90ab9ebba606ae4e6f3389c2145410c52b1", + "sha256:427e1e627b0963ac02d7c8730ca6d935df10280d230508c0ba059505e9233475", + "sha256:432949a32c3e3f820af808db1833d6d1631664d53dd3ce487aa25d574e18ad1c", + "sha256:4ba01d9ba112b55bfa4b24808ec431197bb34f09f66f7cb4fd0258ff9d3711b1", + "sha256:4d0e206259b73af35c4ec1319fd04003776e11e859936658cb6ceffdeba0f5be", + "sha256:51431d0abbed3a868e967f8257c5faf283d41ec882f58413cf295a389bb22e58", + "sha256:565b2e82d0968c977e0b0f7cbf25fd06d78d4856289abc79694c8edcce6eb2de", + "sha256:6782cd6216fab5a83216cc39f13ebe30adfac2fa72688c5a4d8d180cd52e8f6a", + "sha256:6afd2e84e7da40fe23ca588379f815fb6dbbb1b757c883935ed11647205111cb", + "sha256:710c62b6e35a9a766b99b15cdc56d5aeda0914edae8bb467e9c355f75d14ee95", + "sha256:84921b10aeb2dd453247fd10de22907984eaf80901b578a5cf0bb1e279a587cb", + "sha256:85a5dbe1ba1bf38d6c63b6d2c42132d45cbee6d9f0c51b52c59aa4afba057517", + "sha256:9c6384cc90e37cfb60435bbbe0488444e54b98700f727f16f64d8bfda0b84656", + "sha256:9dd88fce54abbdbf4c42fb1fea0e498973d07816f24c0e27a1ecaf91883ce69e", + "sha256:a81eb64feded34f40c8986869a2f764f0fe2db58c0530d3a4afbcde50f314880", + "sha256:a898c11dca8f8c97b467138004a30133974aacd572818c383596f8d5b2eb04a9", + "sha256:a9960dd1891b2ddf13a7fe45339cd59ecee3abb6b8326d8b932d0c5da208104f", + "sha256:a9a7ef30a1b02547c1b23fa9a5564f03c9982fc71eb2ecb7f98c96d7a0db5cf2", + "sha256:ad97ec0da94b378e593ef532b980c15e377df9b9608c7c6da3506953182398af", + "sha256:adf032b6c105881f9d77fa17d9eebe0ad1f9bfb2ad25777811f97c5362aa07f2", + "sha256:bbfe6389c5522b99768a93d89aca52ef92310a96b99782973b9d11e80511f932", + "sha256:bd4bacd62aa2f1a1627352fe68885d6ee694bdaebb16038b6e680f2924a9b2cc", + "sha256:bf0b4b8d9caa8d64df838e0f8dcf68fb570c5733b726d1494b87f3da85db3a2d", + "sha256:c379cdd3efc0658e652a14112d51a7668f6bfca7445c5a10dee7eabecabba19d", + "sha256:c58536f6892559e030e6924896a44098bc1290663ea12532c78cef71d0df8493", + "sha256:cbe6581fcff7c8e262eb574244f81f5faaea539e712a058e6707a9d272fe5b64", + "sha256:ced268e82af993d7801a9db2dbc1d2322e786c5dc76295d8e89473d46c6b84d4", + "sha256:cf3539007202ebfe03923128fedfdd245db5860a36810136ad95a564a2fdffff", + "sha256:cf62d17310f34084c59c01e027259076479128d11e4661bb6c9acb38c5e19bb8", + "sha256:d0194d654e360b3e6cc9b774e83235bae6b9b2cac3be09040880bb0e8a88f4a1", + "sha256:d3d117890b6eee85887b1eed41eefe2e598ad6e40523d9f94c4c4b213258e4a4", + "sha256:db2de4e546f0ec4b2787d625e0b16b78e99c3e21bc1722b4977c0dddf11ca84e", + "sha256:e768d870801f68c74c2b669fc909839660180c366501d4cc4b87efd6b0eee375", + "sha256:e7c211f25777746d468d76f11719e64acb40eed410d81c26cefac641975beb88", + "sha256:eed462b4541c540d63ab57b3fc69e7d8c84d5957668854ee4e408b50e92ce26a", + "sha256:f0bfe42523893c188e9616d853c47685e1c575fe25f737adf473d0405dcfa7eb", + "sha256:f609ebcb0242d84b7adeee2b06c11a2ddaec5464d21888b2c8255f5fd6a98ae4", + "sha256:fea9d3ca80bcf17edb2c08a4704259dadac196fe5e9274067e7a20511fad1743", + "sha256:fed7a72d54bd52f4aeb6c6e951f363903bd7d70bc1cad64dd1f087980d309ab9" ], "markers": "python_version >= '3.8'", - "version": "==7.3.2" + "version": "==7.5.0" }, "cryptography": { "hashes": [ - "sha256:0c327cac00f082013c7c9fb6c46b7cc9fa3c288ca702c74773968173bda421bf", - "sha256:0d2a6a598847c46e3e321a7aef8af1436f11c27f1254933746304ff014664d84", - "sha256:227ec057cd32a41c6651701abc0328135e472ed450f47c2766f23267b792a88e", - "sha256:22892cc830d8b2c89ea60148227631bb96a7da0c1b722f2aac8824b1b7c0b6b8", - "sha256:392cb88b597247177172e02da6b7a63deeff1937fa6fec3bbf902ebd75d97ec7", - "sha256:3be3ca726e1572517d2bef99a818378bbcf7d7799d5372a46c79c29eb8d166c1", - "sha256:573eb7128cbca75f9157dcde974781209463ce56b5804983e11a1c462f0f4e88", - "sha256:580afc7b7216deeb87a098ef0674d6ee34ab55993140838b14c9b83312b37b86", - "sha256:5a70187954ba7292c7876734183e810b728b4f3965fbe571421cb2434d279179", - "sha256:73801ac9736741f220e20435f84ecec75ed70eda90f781a148f1bad546963d81", - "sha256:7d208c21e47940369accfc9e85f0de7693d9a5d843c2509b3846b2db170dfd20", - "sha256:8254962e6ba1f4d2090c44daf50a547cd5f0bf446dc658a8e5f8156cae0d8548", - "sha256:88417bff20162f635f24f849ab182b092697922088b477a7abd6664ddd82291d", - "sha256:a48e74dad1fb349f3dc1d449ed88e0017d792997a7ad2ec9587ed17405667e6d", - "sha256:b948e09fe5fb18517d99994184854ebd50b57248736fd4c720ad540560174ec5", - "sha256:c707f7afd813478e2019ae32a7c49cd932dd60ab2d2a93e796f68236b7e1fbf1", - "sha256:d38e6031e113b7421db1de0c1b1f7739564a88f1684c6b89234fbf6c11b75147", - "sha256:d3977f0e276f6f5bf245c403156673db103283266601405376f075c849a0b936", - "sha256:da6a0ff8f1016ccc7477e6339e1d50ce5f59b88905585f77193ebd5068f1e797", - "sha256:e270c04f4d9b5671ebcc792b3ba5d4488bf7c42c3c241a3748e2599776f29696", - "sha256:e886098619d3815e0ad5790c973afeee2c0e6e04b4da90b88e6bd06e2a0b1b72", - "sha256:ec3b055ff8f1dce8e6ef28f626e0972981475173d7973d63f271b29c8a2897da", - "sha256:fba1e91467c65fe64a82c689dc6cf58151158993b13eb7a7f3f4b7f395636723" + "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee", + "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576", + "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d", + "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30", + "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413", + "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb", + "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da", + "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4", + "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd", + "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc", + "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8", + "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1", + "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc", + "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e", + "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8", + "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940", + "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400", + "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7", + "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16", + "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278", + "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74", + "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec", + "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1", + "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2", + "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c", + "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922", + "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a", + "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6", + "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1", + "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e", + "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac", + "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==41.0.5" + "version": "==42.0.5" }, "cyclonedx-python-lib": { "hashes": [ @@ -1285,19 +1536,19 @@ }, "dill": { "hashes": [ - "sha256:76b122c08ef4ce2eedcd4d1abd8e641114bfc6c2867f49f3c41facf65bf19f5e", - "sha256:cc1c8b182eb3013e24bd475ff2e9295af86c1a38eb1aff128dac8962a9ce3c03" + "sha256:3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca", + "sha256:c36ca9ffb54365bdd2f8eb3eff7d2a21237f8452b57ace88b1ac615b7e815bd7" ], "markers": "python_version < '3.11'", - "version": "==0.3.7" + "version": "==0.3.8" }, "docker": { "hashes": [ - "sha256:aa6d17830045ba5ef0168d5eaa34d37beeb113948c413affe1d5991fc11f9a20", - "sha256:aecd2277b8bf8e506e484f6ab7aec39abe0038e29fa4a6d3ba86c3fe01844ed9" + "sha256:12ba681f2777a0ad28ffbcc846a69c31b4dfd9752b47eb425a274ee269c5e14b", + "sha256:323736fb92cd9418fc5e7133bc953e11a9da04f4483f828b527db553f1e7e5a3" ], - "markers": "python_version >= '3.7'", - "version": "==6.1.3" + "markers": "python_version >= '3.8'", + "version": "==7.0.0" }, "dockerfile-parse": { "hashes": [ @@ -1315,28 +1566,28 @@ }, "ecdsa": { "hashes": [ - "sha256:190348041559e21b22a1d65cee485282ca11a6f81d503fddb84d5017e9ed1e49", - "sha256:80600258e7ed2f16b9aa1d7c295bd70194109ad5a30fdee0eaeefef1d4c559dd" + "sha256:2cea9b88407fdac7bbeca0833b189e4c9c53f2ef1e1eaa29f6224dbc809b707a", + "sha256:60eaad1199659900dd0af521ed462b793bbdf867432b3948e87416ae4caf6bf8" ], - "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==0.18.0" + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==0.19.0" }, "execnet": { "hashes": [ - "sha256:88256416ae766bc9e8895c76a87928c0012183da3cc4fc18016e6f050e025f41", - "sha256:cc59bc4423742fd71ad227122eb0dd44db51efb3dc4095b45ac9a08c770096af" + "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", + "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3" ], - "markers": "python_version >= '3.7'", - "version": "==2.0.2" + "markers": "python_version >= '3.8'", + "version": "==2.1.1" }, "flake8": { "hashes": [ - "sha256:d5b3857f07c030bdb5bf41c7f53799571d75c4491748a3adcd47de929e34cd23", - "sha256:ffdfce58ea94c6580c77888a86506937f9a1a227dfcd15f245d694ae20a6b6e5" + "sha256:33f96621059e65eec474169085dc92bf26e7b2d47366b70be2f67ab80dc25132", + "sha256:a6dfbb75e03252917f2473ea9653f7cd799c3064e54d4c8140044c5c065f53c3" ], "index": "pypi", "markers": "python_full_version >= '3.8.1'", - "version": "==6.1.0" + "version": "==7.0.0" }, "frozenlist": { "hashes": [ @@ -1431,28 +1682,28 @@ }, "gitpython": { "hashes": [ - "sha256:c36b6634d069b3f719610175020a9aed919421c87552185b085e04fbbdb10b7c", - "sha256:ed66e624884f76df22c8e16066d567aaa5a37d5b5fa19db2c6df6f7156db9048" + "sha256:35f314a9f878467f5453cc1fee295c3e18e52f1b99f10f6cf5b1682e968a9e7c", + "sha256:eec7ec56b92aad751f9912a73404bc02ba212a23adb2c7098ee668417051a1ff" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==3.1.41" + "version": "==3.1.43" }, "idna": { "hashes": [ - "sha256:c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407", - "sha256:ea8b7f6188e6fa117537c3df7da9fc686d485087abf6ac197f9c46432f7e4a3c" + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" ], "markers": "python_version >= '3.5'", - "version": "==2.8" + "version": "==3.7" }, "importlib-metadata": { "hashes": [ - "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb", - "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743" + "sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570", + "sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2" ], "markers": "python_version < '3.10'", - "version": "==6.8.0" + "version": "==7.1.0" }, "iniconfig": { "hashes": [ @@ -1464,20 +1715,20 @@ }, "isort": { "hashes": [ - "sha256:8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fcba0504", - "sha256:f84c2818376e66cf843d497486ea8fed8700b340f308f076c6fb1229dff318b6" + "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109", + "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6" ], "index": "pypi", "markers": "python_full_version >= '3.8.0'", - "version": "==5.12.0" + "version": "==5.13.2" }, "jinja2": { "hashes": [ - "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852", - "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" + "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa", + "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90" ], "markers": "python_version >= '3.7'", - "version": "==3.1.2" + "version": "==3.1.3" }, "jmespath": { "hashes": [ @@ -1503,10 +1754,10 @@ }, "jsonpath-ng": { "hashes": [ - "sha256:5483f8e9d74c39c9abfab554c070ae783c1c8cbadf5df60d561bc705ac68a07e", - "sha256:6fd04833412c4b3d9299edf369542f5e67095ca84efa17cbb7f06a34958adc9f" + "sha256:086c37ba4917304850bd837aeab806670224d3f038fe2833ff593a672ef0a5fa", + "sha256:8f22cd8273d7772eea9aaa84d922e0841aa36fdb8a2c6b7f6c3791a16a9bc0be" ], - "version": "==1.6.0" + "version": "==1.6.1" }, "jsonpointer": { "hashes": [ @@ -1532,85 +1783,85 @@ }, "lark": { "hashes": [ - "sha256:7d2c221a66a8165f3f81aacb958d26033d40d972fdb70213ab0a2e0627e29c86", - "sha256:7ef424db57f59c1ffd6f0d4c2b705119927f566b68c0fe1942dddcc0e44391a5" + "sha256:15fa5236490824c2c4aba0e22d2d6d823575dcaf4cdd1848e34b6ad836240fba", + "sha256:a0dd3a87289f8ccbb325901e4222e723e7d745dbfc1803eaf5f3d2ace19cf2db" ], "markers": "python_version >= '3.6'", - "version": "==1.1.8" + "version": "==1.1.9" }, "markdown": { "hashes": [ - "sha256:5874b47d4ee3f0b14d764324d2c94c03ea66bee56f2d929da9f2508d65e722dc", - "sha256:b65d7beb248dc22f2e8a31fb706d93798093c308dc1aba295aedeb9d41a813bd" + "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f", + "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224" ], "markers": "python_version >= '3.8'", - "version": "==3.5.1" + "version": "==3.6" }, "markupsafe": { "hashes": [ - "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e", - "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e", - "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431", - "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686", - "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c", - "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559", - "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc", - "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb", - "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939", - "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c", - "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0", - "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4", - "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9", - "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575", - "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba", - "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d", - "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd", - "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3", - "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00", - "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155", - "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac", - "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52", - "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f", - "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8", - "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b", - "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007", - "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24", - "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea", - "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198", - "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0", - "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee", - "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be", - "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2", - "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1", - "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707", - "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6", - "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c", - "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58", - "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823", - "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779", - "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636", - "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c", - "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad", - "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee", - "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc", - "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2", - "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48", - "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7", - "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e", - "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b", - "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa", - "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5", - "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e", - "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb", - "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9", - "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57", - "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc", - "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc", - "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2", - "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11" + "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf", + "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff", + "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f", + "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3", + "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532", + "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f", + "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617", + "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df", + "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4", + "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906", + "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f", + "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4", + "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8", + "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371", + "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2", + "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465", + "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52", + "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6", + "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169", + "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad", + "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2", + "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0", + "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029", + "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f", + "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a", + "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced", + "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5", + "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c", + "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf", + "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9", + "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb", + "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad", + "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3", + "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1", + "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46", + "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc", + "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a", + "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee", + "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900", + "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5", + "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea", + "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f", + "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5", + "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e", + "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a", + "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f", + "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50", + "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a", + "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b", + "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4", + "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff", + "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2", + "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46", + "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b", + "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf", + "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5", + "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5", + "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab", + "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd", + "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68" ], "markers": "python_version >= '3.7'", - "version": "==2.1.3" + "version": "==2.1.5" }, "mccabe": { "hashes": [ @@ -1631,11 +1882,11 @@ }, "more-itertools": { "hashes": [ - "sha256:626c369fa0eb37bac0291bce8259b332fd59ac792fa5497b59837309cd5b114a", - "sha256:64e0735fcfdc6f3464ea133afe8ea4483b1c5fe3a3d69852e6503b43a0b222e6" + "sha256:686b06abe565edfab151cb8fd385a05651e1fdf8f0a14191e4439283421f8684", + "sha256:8fccb480c43d3e99a00087634c06dd02b0d50fbf088b380de5a41a015ec239e1" ], "markers": "python_version >= '3.8'", - "version": "==10.1.0" + "version": "==10.2.0" }, "moto": { "hashes": [ @@ -1647,83 +1898,99 @@ }, "multidict": { "hashes": [ - "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9", - "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8", - "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03", - "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710", - "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161", - "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664", - "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569", - "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067", - "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313", - "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706", - "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2", - "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636", - "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49", - "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93", - "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603", - "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0", - "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60", - "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4", - "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e", - "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1", - "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60", - "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951", - "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc", - "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe", - "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95", - "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d", - "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8", - "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed", - "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2", - "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775", - "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87", - "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c", - "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2", - "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98", - "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3", - "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe", - "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78", - "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660", - "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176", - "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e", - "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988", - "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c", - "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c", - "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0", - "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449", - "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f", - "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde", - "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5", - "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d", - "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac", - "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a", - "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9", - "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca", - "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11", - "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35", - "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063", - "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b", - "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982", - "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258", - "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1", - "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52", - "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480", - "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7", - "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461", - "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d", - "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc", - "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779", - "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a", - "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547", - "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0", - "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171", - "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf", - "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d", - "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba" + "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", + "sha256:0275e35209c27a3f7951e1ce7aaf93ce0d163b28948444bec61dd7badc6d3f8c", + "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", + "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", + "sha256:09a892e4a9fb47331da06948690ae38eaa2426de97b4ccbfafbdcbe5c8f37ff8", + "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", + "sha256:107c0cdefe028703fb5dafe640a409cb146d44a6ae201e55b35a4af8e95457dd", + "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", + "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", + "sha256:19fe01cea168585ba0f678cad6f58133db2aa14eccaf22f88e4a6dccadfad8b3", + "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", + "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", + "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", + "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", + "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", + "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", + "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", + "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", + "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", + "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", + "sha256:37b15024f864916b4951adb95d3a80c9431299080341ab9544ed148091b53f50", + "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", + "sha256:3d25f19500588cbc47dc19081d78131c32637c25804df8414463ec908631e453", + "sha256:403c0911cd5d5791605808b942c88a8155c2592e05332d2bf78f18697a5fa15e", + "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", + "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", + "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", + "sha256:4a6a4f196f08c58c59e0b8ef8ec441d12aee4125a7d4f4fef000ccb22f8d7241", + "sha256:4cc0ef8b962ac7a5e62b9e826bd0cd5040e7d401bc45a6835910ed699037a461", + "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", + "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", + "sha256:55205d03e8a598cfc688c71ca8ea5f66447164efff8869517f175ea632c7cb7b", + "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", + "sha256:5cb241881eefd96b46f89b1a056187ea8e9ba14ab88ba632e68d7a2ecb7aadf7", + "sha256:60d698e8179a42ec85172d12f50b1668254628425a6bd611aba022257cac1386", + "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", + "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", + "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", + "sha256:69db76c09796b313331bb7048229e3bee7928eb62bab5e071e9f7fcc4879caee", + "sha256:6bf7a982604375a8d49b6cc1b781c1747f243d91b81035a9b43a2126c04766f5", + "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", + "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", + "sha256:76f067f5121dcecf0d63a67f29080b26c43c71a98b10c701b0677e4a065fbd54", + "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", + "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", + "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", + "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", + "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", + "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", + "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", + "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", + "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", + "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", + "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", + "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", + "sha256:a3145cb08d8625b2d3fee1b2d596a8766352979c9bffe5d7833e0503d0f0b5e5", + "sha256:aeaf541ddbad8311a87dd695ed9642401131ea39ad7bc8cf3ef3967fd093b626", + "sha256:b55358304d7a73d7bdf5de62494aaf70bd33015831ffd98bc498b433dfe5b10c", + "sha256:b82cc8ace10ab5bd93235dfaab2021c70637005e1ac787031f4d1da63d493c1d", + "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", + "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", + "sha256:c9bf56195c6bbd293340ea82eafd0071cb3d450c703d2c93afb89f93b8386ccc", + "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", + "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", + "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", + "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", + "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", + "sha256:d65f25da8e248202bd47445cec78e0025c0fe7582b23ec69c3b27a640dd7a8e3", + "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", + "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", + "sha256:d946b0a9eb8aaa590df1fe082cee553ceab173e6cb5b03239716338629c50c7a", + "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", + "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", + "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", + "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", + "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", + "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", + "sha256:e4972624066095e52b569e02b5ca97dbd7a7ddd4294bf4e7247d52635630dd83", + "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", + "sha256:e8e94e6912639a02ce173341ff62cc1201232ab86b8a8fcc05572741a5dc7d93", + "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", + "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", + "sha256:eca2e9d0cc5a889850e9bbd68e98314ada174ff6ccd1129500103df7a94a7a44", + "sha256:edd08e6f2f1a390bf137080507e44ccc086353c8e98c657e666c017718561b89", + "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", + "sha256:f2a1dee728b52b33eebff5072817176c172050d44d67befd681609b4746e1c2e", + "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", + "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", + "sha256:fce28b3c8a81b6b36dfac9feb1de115bab619b3c13905b419ec71d03a3fc1423", + "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef" ], "markers": "python_version >= '3.7'", - "version": "==6.0.4" + "version": "==6.0.5" }, "mypy-extensions": { "hashes": [ @@ -1743,11 +2010,11 @@ }, "packageurl-python": { "hashes": [ - "sha256:01fbf74a41ef85cf413f1ede529a1411f658bda66ed22d45d27280ad9ceba471", - "sha256:799acfe8d9e6e3534bbc19660be97d5b66754bc033e62c39f1e2f16323fcfa84" + "sha256:cdc6bd42dc30c4fc7f8f0ccb721fc31f8c33985dbffccb6e6be4c72874de48ca", + "sha256:f219b2ce6348185a27bd6a72e6fdc9f984e6c9fa157effa7cb93e341c49cdcc2" ], "markers": "python_version >= '3.7'", - "version": "==0.11.2" + "version": "==0.15.0" }, "packaging": { "hashes": [ @@ -1760,19 +2027,19 @@ }, "pathspec": { "hashes": [ - "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20", - "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3" + "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", + "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712" ], - "markers": "python_version >= '3.7'", - "version": "==0.11.2" + "markers": "python_version >= '3.8'", + "version": "==0.12.1" }, "platformdirs": { "hashes": [ - "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3", - "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e" + "sha256:031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf", + "sha256:17d5a1161b3fd67b390023cb2d3b026bbd40abde6fdb052dfbd3a29c3ba22ee1" ], - "markers": "python_version >= '3.7'", - "version": "==3.11.0" + "markers": "python_version >= '3.8'", + "version": "==4.2.1" }, "pluggy": { "hashes": [ @@ -1791,27 +2058,27 @@ }, "policy-sentry": { "hashes": [ - "sha256:5a09f845c9c7b8afe0e14778d3b53039bcf63e1c1a42b276eb198756dbcb9ad6", - "sha256:b8cf00a11a2a335d2bceba5dc1998182288a4b7848916a77923a6a2e0bc84373" + "sha256:2c12bde203b4de563437bbdda995d12ecd31c0b3776f50dd5f56f73e34eaf908", + "sha256:8db1ea570e835d87c57ef51bf6f2372a8b78d463549a5f9c65cb5f8103cd1ed8" ], "markers": "python_version >= '3.6'", - "version": "==0.12.10" + "version": "==0.12.11" }, "policyuniverse": { "hashes": [ - "sha256:6317928273b18de8ed28ddf9f06faf501e044344d86f86b7681817fb32fff67a", - "sha256:7920896195af163230635f1a5cee0958f56003ef8c421f805ec81f134f80a57c" + "sha256:0b0ece0ee8285af31fc39ce09c82a551ca62e62bc2842e23952503bccb973321", + "sha256:74e56d410560915c2c5132e361b0130e4bffe312a2f45230eac50d7c094bc40a" ], "markers": "python_version >= '3.7'", - "version": "==1.5.1.20230817" + "version": "==1.5.1.20231109" }, "prettytable": { "hashes": [ - "sha256:a71292ab7769a5de274b146b276ce938786f56c31cf7cea88b6f3775d82fe8c8", - "sha256:f4ed94803c23073a90620b201965e5dc0bccf1760b7a7eaf3158cab8aaffdf34" + "sha256:6536efaf0757fdaa7d22e78b3aac3b69ea1b7200538c2c6995d649365bddab92", + "sha256:9665594d137fb08a1117518c25551e0ede1687197cf353a4fdc78d27e1073568" ], "markers": "python_version >= '3.8'", - "version": "==3.9.0" + "version": "==3.10.0" }, "py": { "hashes": [ @@ -1823,11 +2090,11 @@ }, "pyasn1": { "hashes": [ - "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57", - "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde" + "sha256:3a35ab2c4b5ef98e17dfdec8ab074046fbda76e281c5a706ccd82328cfc8f64c", + "sha256:cca4bb0f2df5504f02f6f8a775b6e416ff9b0b3b16f7ee80b5a3153d9b804473" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", - "version": "==0.5.0" + "markers": "python_version >= '3.8'", + "version": "==0.6.0" }, "pycares": { "hashes": [ @@ -1904,156 +2171,129 @@ }, "pycparser": { "hashes": [ - "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9", - "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" + "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", + "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==2.21" + "markers": "python_version >= '3.8'", + "version": "==2.22" }, "pydantic": { "hashes": [ - "sha256:94f336138093a5d7f426aac732dcfe7ab4eb4da243c88f891d65deb4a2556ee7", - "sha256:bc3ddf669d234f4220e6e1c4d96b061abe0998185a8d7855c0126782b7abc8c1" + "sha256:e029badca45266732a9a79898a15ae2e8b14840b1eabbb25844be28f0b33f3d5", + "sha256:e9dbb5eada8abe4d9ae5f46b9939aead650cd2b68f249bb3a8139dbe125803cc" ], - "markers": "python_version >= '3.7'", - "version": "==2.4.2" + "markers": "python_version >= '3.8'", + "version": "==2.7.1" }, "pydantic-core": { "hashes": [ - "sha256:042462d8d6ba707fd3ce9649e7bf268633a41018d6a998fb5fbacb7e928a183e", - "sha256:0523aeb76e03f753b58be33b26540880bac5aa54422e4462404c432230543f33", - "sha256:05560ab976012bf40f25d5225a58bfa649bb897b87192a36c6fef1ab132540d7", - "sha256:0675ba5d22de54d07bccde38997e780044dcfa9a71aac9fd7d4d7a1d2e3e65f7", - "sha256:073d4a470b195d2b2245d0343569aac7e979d3a0dcce6c7d2af6d8a920ad0bea", - "sha256:07ec6d7d929ae9c68f716195ce15e745b3e8fa122fc67698ac6498d802ed0fa4", - "sha256:0880e239827b4b5b3e2ce05e6b766a7414e5f5aedc4523be6b68cfbc7f61c5d0", - "sha256:0c27f38dc4fbf07b358b2bc90edf35e82d1703e22ff2efa4af4ad5de1b3833e7", - "sha256:0d8a8adef23d86d8eceed3e32e9cca8879c7481c183f84ed1a8edc7df073af94", - "sha256:0e2a35baa428181cb2270a15864ec6286822d3576f2ed0f4cd7f0c1708472aff", - "sha256:0f8682dbdd2f67f8e1edddcbffcc29f60a6182b4901c367fc8c1c40d30bb0a82", - "sha256:0fa467fd300a6f046bdb248d40cd015b21b7576c168a6bb20aa22e595c8ffcdd", - "sha256:128552af70a64660f21cb0eb4876cbdadf1a1f9d5de820fed6421fa8de07c893", - "sha256:1396e81b83516b9d5c9e26a924fa69164156c148c717131f54f586485ac3c15e", - "sha256:149b8a07712f45b332faee1a2258d8ef1fb4a36f88c0c17cb687f205c5dc6e7d", - "sha256:14ac492c686defc8e6133e3a2d9eaf5261b3df26b8ae97450c1647286750b901", - "sha256:14cfbb00959259e15d684505263d5a21732b31248a5dd4941f73a3be233865b9", - "sha256:14e09ff0b8fe6e46b93d36a878f6e4a3a98ba5303c76bb8e716f4878a3bee92c", - "sha256:154ea7c52e32dce13065dbb20a4a6f0cc012b4f667ac90d648d36b12007fa9f7", - "sha256:15d6bca84ffc966cc9976b09a18cf9543ed4d4ecbd97e7086f9ce9327ea48891", - "sha256:1d40f55222b233e98e3921df7811c27567f0e1a4411b93d4c5c0f4ce131bc42f", - "sha256:25bd966103890ccfa028841a8f30cebcf5875eeac8c4bde4fe221364c92f0c9a", - "sha256:2cf5bb4dd67f20f3bbc1209ef572a259027c49e5ff694fa56bed62959b41e1f9", - "sha256:2e0e2959ef5d5b8dc9ef21e1a305a21a36e254e6a34432d00c72a92fdc5ecda5", - "sha256:320f14bd4542a04ab23747ff2c8a778bde727158b606e2661349557f0770711e", - "sha256:3625578b6010c65964d177626fde80cf60d7f2e297d56b925cb5cdeda6e9925a", - "sha256:39215d809470f4c8d1881758575b2abfb80174a9e8daf8f33b1d4379357e417c", - "sha256:3f0ac9fb8608dbc6eaf17956bf623c9119b4db7dbb511650910a82e261e6600f", - "sha256:417243bf599ba1f1fef2bb8c543ceb918676954734e2dcb82bf162ae9d7bd514", - "sha256:420a692b547736a8d8703c39ea935ab5d8f0d2573f8f123b0a294e49a73f214b", - "sha256:443fed67d33aa85357464f297e3d26e570267d1af6fef1c21ca50921d2976302", - "sha256:48525933fea744a3e7464c19bfede85df4aba79ce90c60b94d8b6e1eddd67096", - "sha256:485a91abe3a07c3a8d1e082ba29254eea3e2bb13cbbd4351ea4e5a21912cc9b0", - "sha256:4a5be350f922430997f240d25f8219f93b0c81e15f7b30b868b2fddfc2d05f27", - "sha256:4d966c47f9dd73c2d32a809d2be529112d509321c5310ebf54076812e6ecd884", - "sha256:524ff0ca3baea164d6d93a32c58ac79eca9f6cf713586fdc0adb66a8cdeab96a", - "sha256:53df009d1e1ba40f696f8995683e067e3967101d4bb4ea6f667931b7d4a01357", - "sha256:5994985da903d0b8a08e4935c46ed8daf5be1cf217489e673910951dc533d430", - "sha256:5cabb9710f09d5d2e9e2748c3e3e20d991a4c5f96ed8f1132518f54ab2967221", - "sha256:5fdb39f67c779b183b0c853cd6b45f7db84b84e0571b3ef1c89cdb1dfc367325", - "sha256:600d04a7b342363058b9190d4e929a8e2e715c5682a70cc37d5ded1e0dd370b4", - "sha256:631cb7415225954fdcc2a024119101946793e5923f6c4d73a5914d27eb3d3a05", - "sha256:63974d168b6233b4ed6a0046296803cb13c56637a7b8106564ab575926572a55", - "sha256:64322bfa13e44c6c30c518729ef08fda6026b96d5c0be724b3c4ae4da939f875", - "sha256:655f8f4c8d6a5963c9a0687793da37b9b681d9ad06f29438a3b2326d4e6b7970", - "sha256:6835451b57c1b467b95ffb03a38bb75b52fb4dc2762bb1d9dbed8de31ea7d0fc", - "sha256:6db2eb9654a85ada248afa5a6db5ff1cf0f7b16043a6b070adc4a5be68c716d6", - "sha256:7c4d1894fe112b0864c1fa75dffa045720a194b227bed12f4be7f6045b25209f", - "sha256:7eb037106f5c6b3b0b864ad226b0b7ab58157124161d48e4b30c4a43fef8bc4b", - "sha256:8282bab177a9a3081fd3d0a0175a07a1e2bfb7fcbbd949519ea0980f8a07144d", - "sha256:82f55187a5bebae7d81d35b1e9aaea5e169d44819789837cdd4720d768c55d15", - "sha256:8572cadbf4cfa95fb4187775b5ade2eaa93511f07947b38f4cd67cf10783b118", - "sha256:8cdbbd92154db2fec4ec973d45c565e767ddc20aa6dbaf50142676484cbff8ee", - "sha256:8f6e6aed5818c264412ac0598b581a002a9f050cb2637a84979859e70197aa9e", - "sha256:92f675fefa977625105708492850bcbc1182bfc3e997f8eecb866d1927c98ae6", - "sha256:962ed72424bf1f72334e2f1e61b68f16c0e596f024ca7ac5daf229f7c26e4208", - "sha256:9badf8d45171d92387410b04639d73811b785b5161ecadabf056ea14d62d4ede", - "sha256:9c120c9ce3b163b985a3b966bb701114beb1da4b0468b9b236fc754783d85aa3", - "sha256:9f6f3e2598604956480f6c8aa24a3384dbf6509fe995d97f6ca6103bb8c2534e", - "sha256:a1254357f7e4c82e77c348dabf2d55f1d14d19d91ff025004775e70a6ef40ada", - "sha256:a1392e0638af203cee360495fd2cfdd6054711f2db5175b6e9c3c461b76f5175", - "sha256:a1c311fd06ab3b10805abb72109f01a134019739bd3286b8ae1bc2fc4e50c07a", - "sha256:a5cb87bdc2e5f620693148b5f8f842d293cae46c5f15a1b1bf7ceeed324a740c", - "sha256:a7a7902bf75779bc12ccfc508bfb7a4c47063f748ea3de87135d433a4cca7a2f", - "sha256:aad7bd686363d1ce4ee930ad39f14e1673248373f4a9d74d2b9554f06199fb58", - "sha256:aafdb89fdeb5fe165043896817eccd6434aee124d5ee9b354f92cd574ba5e78f", - "sha256:ae8a8843b11dc0b03b57b52793e391f0122e740de3df1474814c700d2622950a", - "sha256:b00bc4619f60c853556b35f83731bd817f989cba3e97dc792bb8c97941b8053a", - "sha256:b1f22a9ab44de5f082216270552aa54259db20189e68fc12484873d926426921", - "sha256:b3c01c2fb081fced3bbb3da78510693dc7121bb893a1f0f5f4b48013201f362e", - "sha256:b3dcd587b69bbf54fc04ca157c2323b8911033e827fffaecf0cafa5a892a0904", - "sha256:b4a6db486ac8e99ae696e09efc8b2b9fea67b63c8f88ba7a1a16c24a057a0776", - "sha256:bec7dd208a4182e99c5b6c501ce0b1f49de2802448d4056091f8e630b28e9a52", - "sha256:c0877239307b7e69d025b73774e88e86ce82f6ba6adf98f41069d5b0b78bd1bf", - "sha256:caa48fc31fc7243e50188197b5f0c4228956f97b954f76da157aae7f67269ae8", - "sha256:cfe1090245c078720d250d19cb05d67e21a9cd7c257698ef139bc41cf6c27b4f", - "sha256:d43002441932f9a9ea5d6f9efaa2e21458221a3a4b417a14027a1d530201ef1b", - "sha256:d64728ee14e667ba27c66314b7d880b8eeb050e58ffc5fec3b7a109f8cddbd63", - "sha256:d6495008733c7521a89422d7a68efa0a0122c99a5861f06020ef5b1f51f9ba7c", - "sha256:d8f1ebca515a03e5654f88411420fea6380fc841d1bea08effb28184e3d4899f", - "sha256:d99277877daf2efe074eae6338453a4ed54a2d93fb4678ddfe1209a0c93a2468", - "sha256:da01bec0a26befab4898ed83b362993c844b9a607a86add78604186297eb047e", - "sha256:db9a28c063c7c00844ae42a80203eb6d2d6bbb97070cfa00194dff40e6f545ab", - "sha256:dda81e5ec82485155a19d9624cfcca9be88a405e2857354e5b089c2a982144b2", - "sha256:e357571bb0efd65fd55f18db0a2fb0ed89d0bb1d41d906b138f088933ae618bb", - "sha256:e544246b859f17373bed915182ab841b80849ed9cf23f1f07b73b7c58baee5fb", - "sha256:e562617a45b5a9da5be4abe72b971d4f00bf8555eb29bb91ec2ef2be348cd132", - "sha256:e570ffeb2170e116a5b17e83f19911020ac79d19c96f320cbfa1fa96b470185b", - "sha256:e6f31a17acede6a8cd1ae2d123ce04d8cca74056c9d456075f4f6f85de055607", - "sha256:e9121b4009339b0f751955baf4543a0bfd6bc3f8188f8056b1a25a2d45099934", - "sha256:ebedb45b9feb7258fac0a268a3f6bec0a2ea4d9558f3d6f813f02ff3a6dc6698", - "sha256:ecaac27da855b8d73f92123e5f03612b04c5632fd0a476e469dfc47cd37d6b2e", - "sha256:ecdbde46235f3d560b18be0cb706c8e8ad1b965e5c13bbba7450c86064e96561", - "sha256:ed550ed05540c03f0e69e6d74ad58d026de61b9eaebebbaaf8873e585cbb18de", - "sha256:eeb3d3d6b399ffe55f9a04e09e635554012f1980696d6b0aca3e6cf42a17a03b", - "sha256:ef337945bbd76cce390d1b2496ccf9f90b1c1242a3a7bc242ca4a9fc5993427a", - "sha256:f1365e032a477c1430cfe0cf2856679529a2331426f8081172c4a74186f1d595", - "sha256:f23b55eb5464468f9e0e9a9935ce3ed2a870608d5f534025cd5536bca25b1402", - "sha256:f2e9072d71c1f6cfc79a36d4484c82823c560e6f5599c43c1ca6b5cdbd54f881", - "sha256:f323306d0556351735b54acbf82904fe30a27b6a7147153cbe6e19aaaa2aa429", - "sha256:f36a3489d9e28fe4b67be9992a23029c3cec0babc3bd9afb39f49844a8c721c5", - "sha256:f64f82cc3443149292b32387086d02a6c7fb39b8781563e0ca7b8d7d9cf72bd7", - "sha256:f6defd966ca3b187ec6c366604e9296f585021d922e666b99c47e78738b5666c", - "sha256:f7c2b8eb9fc872e68b46eeaf835e86bccc3a58ba57d0eedc109cbb14177be531", - "sha256:fa7db7558607afeccb33c0e4bf1c9a9a835e26599e76af6fe2fcea45904083a6", - "sha256:fcb83175cc4936a5425dde3356f079ae03c0802bbdf8ff82c035f8a54b333521" + "sha256:0098300eebb1c837271d3d1a2cd2911e7c11b396eac9661655ee524a7f10587b", + "sha256:042473b6280246b1dbf530559246f6842b56119c2926d1e52b631bdc46075f2a", + "sha256:05b7133a6e6aeb8df37d6f413f7705a37ab4031597f64ab56384c94d98fa0e90", + "sha256:0680b1f1f11fda801397de52c36ce38ef1c1dc841a0927a94f226dea29c3ae3d", + "sha256:0d69b4c2f6bb3e130dba60d34c0845ba31b69babdd3f78f7c0c8fae5021a253e", + "sha256:1404c69d6a676245199767ba4f633cce5f4ad4181f9d0ccb0577e1f66cf4c46d", + "sha256:182245ff6b0039e82b6bb585ed55a64d7c81c560715d1bad0cbad6dfa07b4027", + "sha256:1a388a77e629b9ec814c1b1e6b3b595fe521d2cdc625fcca26fbc2d44c816804", + "sha256:1d90c3265ae107f91a4f279f4d6f6f1d4907ac76c6868b27dc7fb33688cfb347", + "sha256:20aca1e2298c56ececfd8ed159ae4dde2df0781988c97ef77d5c16ff4bd5b400", + "sha256:219da3f096d50a157f33645a1cf31c0ad1fe829a92181dd1311022f986e5fbe3", + "sha256:22057013c8c1e272eb8d0eebc796701167d8377441ec894a8fed1af64a0bf399", + "sha256:223ee893d77a310a0391dca6df00f70bbc2f36a71a895cecd9a0e762dc37b349", + "sha256:224c421235f6102e8737032483f43c1a8cfb1d2f45740c44166219599358c2cd", + "sha256:2334ce8c673ee93a1d6a65bd90327588387ba073c17e61bf19b4fd97d688d63c", + "sha256:269322dcc3d8bdb69f054681edff86276b2ff972447863cf34c8b860f5188e2e", + "sha256:2728b01246a3bba6de144f9e3115b532ee44bd6cf39795194fb75491824a1413", + "sha256:2b8ed04b3582771764538f7ee7001b02e1170223cf9b75dff0bc698fadb00cf3", + "sha256:2e29d20810dfc3043ee13ac7d9e25105799817683348823f305ab3f349b9386e", + "sha256:36789b70d613fbac0a25bb07ab3d9dba4d2e38af609c020cf4d888d165ee0bf3", + "sha256:390193c770399861d8df9670fb0d1874f330c79caaca4642332df7c682bf6b91", + "sha256:3a6515ebc6e69d85502b4951d89131ca4e036078ea35533bb76327f8424531ce", + "sha256:3f9a801e7c8f1ef8718da265bba008fa121243dfe37c1cea17840b0944dfd72c", + "sha256:43f0f463cf89ace478de71a318b1b4f05ebc456a9b9300d027b4b57c1a2064fb", + "sha256:4456f2dca97c425231d7315737d45239b2b51a50dc2b6f0c2bb181fce6207664", + "sha256:470b94480bb5ee929f5acba6995251ada5e059a5ef3e0dfc63cca287283ebfa6", + "sha256:4774f3184d2ef3e14e8693194f661dea5a4d6ca4e3dc8e39786d33a94865cefd", + "sha256:4b4356d3538c3649337df4074e81b85f0616b79731fe22dd11b99499b2ebbdf3", + "sha256:553ef617b6836fc7e4df130bb851e32fe357ce36336d897fd6646d6058d980af", + "sha256:6132dd3bd52838acddca05a72aafb6eab6536aa145e923bb50f45e78b7251043", + "sha256:6a46e22a707e7ad4484ac9ee9f290f9d501df45954184e23fc29408dfad61350", + "sha256:6e5c584d357c4e2baf0ff7baf44f4994be121e16a2c88918a5817331fc7599d7", + "sha256:75250dbc5290e3f1a0f4618db35e51a165186f9034eff158f3d490b3fed9f8a0", + "sha256:75f7e9488238e920ab6204399ded280dc4c307d034f3924cd7f90a38b1829563", + "sha256:78363590ef93d5d226ba21a90a03ea89a20738ee5b7da83d771d283fd8a56761", + "sha256:7ca4ae5a27ad7a4ee5170aebce1574b375de390bc01284f87b18d43a3984df72", + "sha256:800d60565aec896f25bc3cfa56d2277d52d5182af08162f7954f938c06dc4ee3", + "sha256:82d5d4d78e4448683cb467897fe24e2b74bb7b973a541ea1dcfec1d3cbce39fb", + "sha256:852e966fbd035a6468fc0a3496589b45e2208ec7ca95c26470a54daed82a0788", + "sha256:868649da93e5a3d5eacc2b5b3b9235c98ccdbfd443832f31e075f54419e1b96b", + "sha256:886eec03591b7cf058467a70a87733b35f44707bd86cf64a615584fd72488b7c", + "sha256:8b172601454f2d7701121bbec3425dd71efcb787a027edf49724c9cefc14c038", + "sha256:95b9d5e72481d3780ba3442eac863eae92ae43a5f3adb5b4d0a1de89d42bb250", + "sha256:98758d627ff397e752bc339272c14c98199c613f922d4a384ddc07526c86a2ec", + "sha256:997abc4df705d1295a42f95b4eec4950a37ad8ae46d913caeee117b6b198811c", + "sha256:9b5155ff768083cb1d62f3e143b49a8a3432e6789a3abee8acd005c3c7af1c74", + "sha256:9e08e867b306f525802df7cd16c44ff5ebbe747ff0ca6cf3fde7f36c05a59a81", + "sha256:9fdad8e35f278b2c3eb77cbdc5c0a49dada440657bf738d6905ce106dc1de439", + "sha256:a1874c6dd4113308bd0eb568418e6114b252afe44319ead2b4081e9b9521fe75", + "sha256:a8309f67285bdfe65c372ea3722b7a5642680f3dba538566340a9d36e920b5f0", + "sha256:ae0a8a797a5e56c053610fa7be147993fe50960fa43609ff2a9552b0e07013e8", + "sha256:b14d82cdb934e99dda6d9d60dc84a24379820176cc4a0d123f88df319ae9c150", + "sha256:b1bd7e47b1558ea872bd16c8502c414f9e90dcf12f1395129d7bb42a09a95438", + "sha256:b3ef08e20ec49e02d5c6717a91bb5af9b20f1805583cb0adfe9ba2c6b505b5ae", + "sha256:b89ed9eb7d616ef5714e5590e6cf7f23b02d0d539767d33561e3675d6f9e3857", + "sha256:c4fcf5cd9c4b655ad666ca332b9a081112cd7a58a8b5a6ca7a3104bc950f2038", + "sha256:c6fdc8627910eed0c01aed6a390a252fe3ea6d472ee70fdde56273f198938374", + "sha256:c9bd70772c720142be1020eac55f8143a34ec9f82d75a8e7a07852023e46617f", + "sha256:ca7b0c1f1c983e064caa85f3792dd2fe3526b3505378874afa84baf662e12241", + "sha256:cbca948f2d14b09d20268cda7b0367723d79063f26c4ffc523af9042cad95592", + "sha256:cc1cfd88a64e012b74e94cd00bbe0f9c6df57049c97f02bb07d39e9c852e19a4", + "sha256:ccdd111c03bfd3666bd2472b674c6899550e09e9f298954cfc896ab92b5b0e6d", + "sha256:cfeecd1ac6cc1fb2692c3d5110781c965aabd4ec5d32799773ca7b1456ac636b", + "sha256:d4d938ec0adf5167cb335acb25a4ee69a8107e4984f8fbd2e897021d9e4ca21b", + "sha256:d7d904828195733c183d20a54230c0df0eb46ec746ea1a666730787353e87182", + "sha256:d91cb5ea8b11607cc757675051f61b3d93f15eca3cefb3e6c704a5d6e8440f4e", + "sha256:d9319e499827271b09b4e411905b24a426b8fb69464dfa1696258f53a3334641", + "sha256:e0e8b1be28239fc64a88a8189d1df7fad8be8c1ae47fcc33e43d4be15f99cc70", + "sha256:e18609ceaa6eed63753037fc06ebb16041d17d28199ae5aba0052c51449650a9", + "sha256:e1b395e58b10b73b07b7cf740d728dd4ff9365ac46c18751bf8b3d8cca8f625a", + "sha256:e23ec367a948b6d812301afc1b13f8094ab7b2c280af66ef450efc357d2ae543", + "sha256:e25add29b8f3b233ae90ccef2d902d0ae0432eb0d45370fe315d1a5cf231004b", + "sha256:e6dac87ddb34aaec85f873d737e9d06a3555a1cc1a8e0c44b7f8d5daeb89d86f", + "sha256:ef26c9e94a8c04a1b2924149a9cb081836913818e55681722d7f29af88fe7b38", + "sha256:eff2de745698eb46eeb51193a9f41d67d834d50e424aef27df2fcdee1b153845", + "sha256:f0a21cbaa69900cbe1a2e7cad2aa74ac3cf21b10c3efb0fa0b80305274c0e8a2", + "sha256:f459a5ce8434614dfd39bbebf1041952ae01da6bed9855008cb33b875cb024c0", + "sha256:f93a8a2e3938ff656a7c1bc57193b1319960ac015b6e87d76c76bf14fe0244b4", + "sha256:fb2bd7be70c0fe4dfd32c951bc813d9fe6ebcbfdd15a07527796c8204bd36242" ], - "markers": "python_version >= '3.7'", - "version": "==2.10.1" + "markers": "python_version >= '3.8'", + "version": "==2.18.2" }, "pyflakes": { "hashes": [ - "sha256:4132f6d49cb4dae6819e5379898f2b8cce3c5f23994194c24b77d5da2e36f774", - "sha256:a0aae034c444db0071aa077972ba4768d40c830d9539fd45bf4cd3f8f6992efc" + "sha256:1c61603ff154621fb2a9172037d84dca3500def8c8b630657d1701f026f8af3f", + "sha256:84b5be138a2dfbb40689ca07e2152deb896a65c3a3e24c251c5c62489568074a" ], "markers": "python_version >= '3.8'", - "version": "==3.1.0" + "version": "==3.2.0" }, "pylint": { "hashes": [ - "sha256:0d4c286ef6d2f66c8bfb527a7f8a629009e42c99707dec821a03e1b51a4c1496", - "sha256:60ed5f3a9ff8b61839ff0348b3624ceeb9e6c2a92c514d81c9cc273da3b6bcda" + "sha256:507a5b60953874766d8a366e8e8c7af63e058b26345cfcb5f91f89d987fd6b74", + "sha256:6a69beb4a6f63debebaab0a3477ecd0f559aa726af4954fc948c51f7a2549e23" ], "index": "pypi", "markers": "python_full_version >= '3.8.0'", - "version": "==3.0.2" + "version": "==3.1.0" }, "pyparsing": { "hashes": [ - "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb", - "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db" + "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad", + "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742" ], "markers": "python_full_version >= '3.6.8'", - "version": "==3.1.1" + "version": "==3.1.2" }, "pyrsistent": { "hashes": [ @@ -2144,20 +2384,20 @@ }, "python-dateutil": { "hashes": [ - "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", - "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", + "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==2.8.2" + "version": "==2.9.0.post0" }, "python-dotenv": { "hashes": [ - "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba", - "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a" + "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca", + "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.0.0" + "version": "==1.0.1" }, "python-jose": { "hashes": [ @@ -2168,10 +2408,10 @@ }, "pytz": { "hashes": [ - "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b", - "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7" + "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", + "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319" ], - "version": "==2023.3.post1" + "version": "==2024.1" }, "pyyaml": { "hashes": [ @@ -2204,6 +2444,7 @@ "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4", "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba", "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8", + "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef", "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5", "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd", "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3", @@ -2334,11 +2575,12 @@ }, "responses": { "hashes": [ - "sha256:060be153c270c06fa4d22c1ef8865fdef43902eb595204deeef736cddb62d353", - "sha256:3df82f7d4dcd3e5f61498181aadb4381f291da25c7506c47fe8cb68ce29203e7" + "sha256:01ae6a02b4f34e39bffceb0fc6786b67a25eae919c6368d05eabc8d9576c2a66", + "sha256:2f0b9c2b6437db4b528619a77e5d565e4ec2a9532162ac1a131a83529db7be1a" ], + "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==0.24.0" + "version": "==0.25.0" }, "rsa": { "hashes": [ @@ -2350,11 +2592,11 @@ }, "s3transfer": { "hashes": [ - "sha256:10d6923c6359175f264811ef4bf6161a3156ce8e350e705396a7557d6293c33a", - "sha256:fd3889a66f5fe17299fe75b82eae6cf722554edca744ca5d5fe308b104883d2e" + "sha256:5683916b4c724f799e600f41dd9e10a9ff19871bf87623cc8f491cb4f5fa0a19", + "sha256:ceb252b11bcf87080fb7850a224fb6e05c8a776bab8f2b64b7f25b969464839d" ], - "markers": "python_version >= '3.7'", - "version": "==0.7.0" + "markers": "python_version >= '3.8'", + "version": "==0.10.1" }, "schema": { "hashes": [ @@ -2373,11 +2615,11 @@ }, "setuptools": { "hashes": [ - "sha256:4ac1475276d2f1c48684874089fefcd83bd7162ddaafb81fac866ba0db282a87", - "sha256:b454a35605876da60632df1a60f736524eb73cc47bbc9f3f1ef1b644de74fd2a" + "sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987", + "sha256:c636ac361bc47580504644275c9ad802c50415c7522212252c033bd15f301f32" ], "markers": "python_version >= '3.8'", - "version": "==68.2.2" + "version": "==69.5.1" }, "six": { "hashes": [ @@ -2421,11 +2663,11 @@ }, "termcolor": { "hashes": [ - "sha256:3afb05607b89aed0ffe25202399ee0867ad4d3cb4180d98aaf8eefa6a5f7d475", - "sha256:b5b08f68937f138fe92f6c089b99f1e2da0ae56c52b78bf7075fd95420fd9a5a" + "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63", + "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a" ], - "markers": "python_version >= '3.7'", - "version": "==2.3.0" + "markers": "python_version >= '3.8'", + "version": "==2.4.0" }, "toml": { "hashes": [ @@ -2445,41 +2687,43 @@ }, "tomlkit": { "hashes": [ - "sha256:df32fab589a81f0d7dc525a4267b6d7a64ee99619cbd1eeb0fae32c1dd426977", - "sha256:eeea7ac7563faeab0a1ed8fe12c2e5a51c61f933f2502f7e9db0241a65163ad0" + "sha256:5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b", + "sha256:7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3" ], "markers": "python_version >= '3.7'", - "version": "==0.12.2" + "version": "==0.12.4" }, "tqdm": { "hashes": [ - "sha256:d302b3c5b53d47bce91fea46679d9c3c6508cf6332229aa1e7d8653723793386", - "sha256:d88e651f9db8d8551a62556d3cff9e3034274ca5d66e93197cf2490e2dcb69c7" + "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9", + "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531" ], "markers": "python_version >= '3.7'", - "version": "==4.66.1" + "version": "==4.66.2" }, "types-setuptools": { "hashes": [ - "sha256:77edcc843e53f8fc83bb1a840684841f3dc804ec94562623bfa2ea70d5a2ba1b", - "sha256:a4216f1e2ef29d089877b3af3ab2acf489eb869ccaf905125c69d2dc3932fd85" + "sha256:a4381e041510755a6c9210e26ad55b1629bc10237aeb9cb8b6bd24996b73db48", + "sha256:a7ba908f1746c4337d13f027fa0f4a5bcad6d1d92048219ba792b3295c58586d" ], - "version": "==68.2.0.0" + "markers": "python_version >= '3.8'", + "version": "==69.5.0.20240423" }, "types-toml": { "hashes": [ - "sha256:58b0781c681e671ff0b5c0319309910689f4ab40e8a2431e205d70c94bb6efb1", - "sha256:61951da6ad410794c97bec035d59376ce1cbf4453dc9b6f90477e81e4442d631" + "sha256:3d41501302972436a6b8b239c850b26689657e25281b48ff0ec06345b8830331", + "sha256:627b47775d25fa29977d9c70dc0cbab3f314f32c8d8d0c012f2ef5de7aaec05d" ], - "version": "==0.10.8.7" + "markers": "python_version >= '3.8'", + "version": "==0.10.8.20240310" }, "typing-extensions": { "hashes": [ - "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0", - "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef" + "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", + "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" ], "markers": "python_version >= '3.8'", - "version": "==4.8.0" + "version": "==4.11.0" }, "update-checker": { "hashes": [ @@ -2499,102 +2743,94 @@ }, "wcwidth": { "hashes": [ - "sha256:9a929bd8380f6cd9571a968a9c8f4353ca58d7cd812a4822bba831f8d685b223", - "sha256:a675d1a4a2d24ef67096a04b85b02deeecd8e226f57b5e3a72dbb9ed99d27da8" + "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", + "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5" ], - "version": "==0.2.9" - }, - "websocket-client": { - "hashes": [ - "sha256:084072e0a7f5f347ef2ac3d8698a5e0b4ffbfcab607628cadabc650fc9a83a24", - "sha256:b3324019b3c28572086c4a319f91d1dcd44e6e11cd340232978c684a7650d0df" - ], - "markers": "python_version >= '3.8'", - "version": "==1.6.4" + "version": "==0.2.13" }, "werkzeug": { "hashes": [ - "sha256:507e811ecea72b18a404947aded4b3390e1db8f826b494d76550ef45bb3b1dcc", - "sha256:90a285dc0e42ad56b34e696398b8122ee4c681833fb35b8334a095d82c56da10" + "sha256:3aac3f5da756f93030740bc235d3e09449efcf65f2f55e3602e1d851b8f48795", + "sha256:e39b645a6ac92822588e7b39a692e7828724ceae0b0d702ef96701f90e70128d" ], "markers": "python_version >= '3.8'", - "version": "==3.0.1" + "version": "==3.0.2" }, "wrapt": { "hashes": [ - "sha256:03e76cc5143af6e9098d61fa195a0683db5aaca7b42209e23d2b79a43a42215b", - "sha256:0b9348a09742013395f4eeff39fc5c23a80186f17f9b6ca6a06b2cd885e34f8b", - "sha256:0c882fe9737760a8208bdb8d69015302732b457a1afbb3572ff9b259dafd74af", - "sha256:11f3ed8f88776fb7631544c191091de320133c88feca999d974456d1e7f45666", - "sha256:1babf7f3f94996e348bb46b22e6f08d638bc4a17c27af690836559b7f4430402", - "sha256:20c9193662f6a39d75deecf5c72c61028d9208af62b1c85ebc88a18788d26d61", - "sha256:275058048bbbb53fb9443bbd6a1ed8d4277a2928a05e1ed0fe4cfd377da90172", - "sha256:300c4cc0b93598e8dbd3a3dc98e643fe537d1068eb0e926e19ae6375feb4a6c5", - "sha256:386b8209eb21feda19d794d4ddcd6501f3d894b5d02063aec2738ec7e33c5c55", - "sha256:38f7304bba1d8aa5a4299afd4afb50c847b697435fcae27efc2140f3598df9ef", - "sha256:393d5afd16ae6935612de05e592a8ee9d178edd17217fe4eb886afa273cb6ec0", - "sha256:3bf47bf011a47010e85d5189f77cadb3b547d8b65a303f072b425a74a3111ef4", - "sha256:3c33ff125192043c87427d1f3c123bc6da35f19cd2c25ae17f3fd26217a764c2", - "sha256:40d2f6ab8f35801e5166b7b35f9532540d796188ec825a2404cf5e3fda2168e1", - "sha256:49cc6b5dedc221529be55ee5bbfae682f6bb118920cbb4464ddb3cae1df583c1", - "sha256:4b3dcebbd538f6f4ef8d677effd29a13f0b96e88ce9d88beb0a300116611f053", - "sha256:4e75f141c576b3f2f2f2fe359329ebe75c417ca4b12a3ade0e9fdeafb140d8d2", - "sha256:56081ed03f12515f6d733677bf9084c864efeeb473db94666f3028df6082d57c", - "sha256:5717a43f61df50dbef56679fa033ca0a493a5010be3cf0ca5bd9cfe12383873f", - "sha256:5e4ed9d034a18ae76ce19c86cfa7d236c37bcb46de3d1a62b9140d18a7b9151d", - "sha256:60a553cf4f0f65da713c7fdcde741d2c6057fe7c3633ccb5e218483fab19de84", - "sha256:62d14b91c1665983d0e34b5206f8e761c423ba3a9c8cf30846a1f3fc5093600d", - "sha256:6988688759294253aaeec30bbec346ad82286c8b2a906555340cd1feeda0961d", - "sha256:6dca87f300b0fc11d0e38145d06c3d6d73cde2427f0f4bdcf5d01bc796c86fe7", - "sha256:6f86916c1e413443f53be9b6a6709bb376ba8ee8cb18d4a2c87561e2f1e5dff5", - "sha256:6f96555ec328714caab0b8bbe9fcd92d16b2f1a6af931931bb80b3d014b1fd51", - "sha256:78c03829fe1dc11eefe2500686a28c343340453a7adc68ecacc4d5f3b8d57dee", - "sha256:79de2f8f907115d0345ea85cf5382f91b8572f71fd81e0407f64ab1f4c1fc812", - "sha256:7be5254cfb1acec9441df89967fc241c5b1023e2c801717d6c758b4e36b113b0", - "sha256:89f133fb105a83edb3faa03bf0c632a9525658238803dfb00f3bbeca73dd915b", - "sha256:8d22ec737a143e1999bb3d8e27228df1d6e117cb419b9aa41c2ed152337a7d22", - "sha256:9166562917559942f803cd9db47b00a53717024f8c71d92b881599096ed6f7e6", - "sha256:95f434c8c5605c11e1624b064316775cb2b1b64bd9d438acefed35fd6662fe10", - "sha256:98a34ad05ff26210570e2f7f70613d801aa45aabb2a3f3276144f830ca84cdb1", - "sha256:998e0012839ec5cb42f68a147daa00c2d86e5c9672abdf7716955ea046756bb0", - "sha256:9cb976d424d0b5366171c03da6eb36df42c86f3959388bef21cbd024fcf2686c", - "sha256:9eba32d17d477f551b14c4bb9be9018ea0ac0ca5c9f9500112e61763479e71aa", - "sha256:a120472cff2ab49da3f32f95a99bb77e95551abc2f2ecc79e769c4f2dc4faaa7", - "sha256:a4536de186986f6077288c977ad73660689cb45a08acf4a69f682388f2824fef", - "sha256:a8d25a7baf089a6530073ae97c2988fceccc7f26f79e90ad3b1ad1bc060a0c3c", - "sha256:a93a9d218473817f4c51ae70958585e69ed8c5c62a7c8fda5a75e148c9ae86a9", - "sha256:ac73fecc83d7c911e95515df49969435ca8a6409d09853be567a6caf36bdc4fd", - "sha256:ae98c52a7397b9827568f64dfd0cc24e84e18bcfedb4b67ae49d8b5a4242b07c", - "sha256:af260f7ce492beb0cea355134bb054a928a9b254827e863c15b105d8699ed52d", - "sha256:b2dea75b91bfabae5c85fb3804dcf9c391febccaac59f1309f2cfb16c83452e1", - "sha256:b582635e7d837f0b21b38e2bc2d00b09605d044fa0ebdef72e6b9534ed277034", - "sha256:bde183fda6bde2cbeac8db7e5f3ac9d223cbd8926426a9d780d05557410815ab", - "sha256:bfebc5fbafc4e8a0b433238feed10ecbf652818b56303c8237a60112e6eeeab5", - "sha256:ca500194268302ca654d2191a709250b504ce9e71214acf503b63cece112656d", - "sha256:cfd7afaa857917192fc78f7719a47386d82be0cbae8bf40522bb00a498314e45", - "sha256:d0c1832ec2c68459c44535747224ae800a8fd22854a173c1ac48305872739927", - "sha256:d1dddc34ef35591d0971c34b64c8d557a8b3d7c1b15f25ee3c88511eeacc5031", - "sha256:d5b9c78afff3995b4dad3ef06c573d6a3ee5229507006bfa03da15e80d62a9cd", - "sha256:d6d6d89cb9cdc33b360eaca9adcfa7cdb603bb88e494734459be34f64c4c4d86", - "sha256:d7a7bd6a773ad928a7e421e4060cc86d39b669c18202cf929c9dc3e5860c4591", - "sha256:d85c9e8ad63910312b6433667b5945ba2763ba4ad217b2602b7c5b23e322c6bf", - "sha256:da090b8ef5a6b2a3ea1593debbfbdabd6795b38f74835e0cb4a50b116ccf2de7", - "sha256:db19ee778cebfbb118333a16464007dc387342947e642fb891958feff733d778", - "sha256:e076113a22bb1c01d160e60dc9f32a14dadabb2750de3e7dc5ab0bc8f3fb6029", - "sha256:e1e811fc46e648154ac8df5443643504f95e45c685517c34b2585e87cb3a1f9a", - "sha256:e5dd9a0df1b423dfbf04cef8b693727ebcbba6ddfc96ab74bfd93f45d1a644fd", - "sha256:ecfe346b1d26e5966013d97bb07325880d8fe900df5ee3ed6ab2e7096fff365a", - "sha256:ed864812649ec6f2e9d3ae49c021d52aa04fe2ef1c8348ebdc3bdde5765cd30e", - "sha256:ee46c29c03ef99cbe4bef0903eede7ebd7263d1a1c0a38f6db8eeccb86c1cb99", - "sha256:ef20742684ba9a5d2147bbf82be38a00e6e67c6af87ed48507f6c4a6c787dec9", - "sha256:f12dfdc7943908f392ede9041a53295825d0fc418494cdbe9de9718f4065ee2d", - "sha256:f270e86dc5210fc120ff4727401649a48b2f81889c09b2762da227ca6004f036", - "sha256:f89bf867a643805b8e041ed551d1ceb74fee0d540aeec03bd0ffb8b19990e040", - "sha256:fbf2264e29f4834eda24438377ba42d7e9571c81e9ff4dd54976a14e3c05dc8e", - "sha256:ff586b8183af4be687749735adc2dcf86eae6874953f0a4f1309073b47154ff4" + "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc", + "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81", + "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09", + "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e", + "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca", + "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0", + "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb", + "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487", + "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40", + "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c", + "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060", + "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202", + "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41", + "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9", + "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b", + "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664", + "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d", + "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362", + "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00", + "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc", + "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1", + "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267", + "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956", + "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966", + "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1", + "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228", + "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72", + "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d", + "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292", + "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0", + "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0", + "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36", + "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c", + "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5", + "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f", + "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73", + "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b", + "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2", + "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593", + "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39", + "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389", + "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf", + "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf", + "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89", + "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c", + "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c", + "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f", + "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440", + "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465", + "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136", + "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b", + "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8", + "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3", + "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8", + "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6", + "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e", + "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f", + "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c", + "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e", + "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8", + "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2", + "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020", + "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35", + "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d", + "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3", + "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537", + "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809", + "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d", + "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a", + "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4" ], "markers": "python_version >= '3.6'", - "version": "==1.16.0rc2" + "version": "==1.16.0" }, "xmltodict": { "hashes": [ @@ -2702,11 +2938,11 @@ }, "zipp": { "hashes": [ - "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31", - "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0" + "sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b", + "sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715" ], "markers": "python_version >= '3.8'", - "version": "==3.17.0" + "version": "==3.18.1" } } } diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/__init__.py b/backend/lambdas/scheduled/update_github_org_users/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py b/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py new file mode 100644 index 00000000..699a4d5b --- /dev/null +++ b/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py @@ -0,0 +1,32 @@ +import unittest +import requests +import responses +from update_github_org_users.util.github import query_users_for_org + +def noop(): + pass + +class TestQueryUsersForOrg(unittest.TestCase): + @responses.activate + def test_query_users_for_org(self): + responses.add( + responses.POST, + "https://api.github.com/graphql", + json={"data":{"q1":{"organization":{"login":"WarnerMedia"}}}}, + status=200, + ) + authorization = "noauth" + org = "WarnerMedia" + github_users = [] + github_user = {} + github_user["artemis_user_id"] = "1234" + github_user["username"] = "test_user" + github_user["query_name"] = "q1" + github_users.append(github_user) + query_response = query_users_for_org(authorization, github_users, org) + data = query_response.get("data") + if data: + data_user = data.get(github_user["query_name"]) + if data_user: + user_in_organization = data_user.get("organization") + self.assertEqual(user_in_organization, {"login":"WarnerMedia"}) diff --git a/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py b/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py index a1f6d89a..a13e383d 100644 --- a/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py +++ b/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py @@ -1,7 +1,10 @@ import os from typing import Union - import requests +# from gql import Client +# from gql.transport.requests import RequestsHTTPTransport +# from gql.dsl import DSLQuery, DSLSchema, dsl_gql, DSLVariableDefinitions + from artemislib.github.app import GithubApp from artemislib.logging import Logger @@ -24,7 +27,6 @@ def get_token(org: str, github_secret: str) -> str: key = _get_api_key(github_secret) return f"bearer {key}" - def query_users_for_org(authorization: str, github_users: list, org: str) -> Union[bool, dict]: """ Given a list of GitHub users, determine if each is/is not part of a given org @@ -36,7 +38,6 @@ def query_users_for_org(authorization: str, github_users: list, org: str) -> Uni query += f"""{github_user["query_name"]}: user(login: "{github_user["username"]}") {{ organization(login: "{org}") {{ login }} }}""" query += "}" - r = requests.post("https://api.github.com/graphql", json={"query": query}, headers=headers) if r.status_code != 200: @@ -44,10 +45,44 @@ def query_users_for_org(authorization: str, github_users: list, org: str) -> Uni log.error(f"Status Code: {r.status_code}") log.error(f"Body: {r.text}") return False - return r.json() +def query_users_for_org_new(authorization: str, github_users: list, org: str) -> Union[bool, dict]: + """ + Given a list of GitHub users, determine if each is/is not part of a given org + """ + user_queries = [] + variables = {"org": org} + headers = {"accept": "application/vnd.github.v3+json", "authorization": f"{authorization}"} + transport = RequestsHTTPTransport(url="https://api.github.com/graphql", headers=headers) + client = Client(transport=transport, fetch_schema_from_transport=True) + with client as session: + assert client.schema is not None + + ds = DSLSchema(client.schema) + var_defs = DSLVariableDefinitions() + + for github_user in github_users: + variables[github_user["query_name"]] = github_user["username"] + user_queries.append(( + ds.Query.user + .args(login=var_defs[github_user["query_name"]]) + .alias(github_user["query_name"]) + .select(ds.Organization.args(login=var_defs.org) + .select(ds.Organization.login) + ) + )) + + operation = DSLQuery(user_queries) + operation.variable_definitions = var_defs + query = dsl_gql(operation) + + result = session.execute(query, variable_values=variables) + + return result + + def _get_api_key(service_secret): from artemislib.aws import AWSConnect # pylint: disable=import-outside-toplevel diff --git a/orchestrator/Makefile b/orchestrator/Makefile index 1cdcdc41..d19c55e2 100644 --- a/orchestrator/Makefile +++ b/orchestrator/Makefile @@ -55,7 +55,7 @@ HEIMDALL_UTILS := ${PREFIX}-utils HEIMDALL_REPOS := ${PREFIX}-repos HEIMDALL_ORGS_DIR := lambdas/layers/heimdall_orgs -HEIMDALL_UTILS_DIR := lambdas/layers/heimdall_utils +HEIMDALL_UTILS_DIR := lambdas/layers/heimdall_utils HEIMDALL_REPOS_DIR := lambdas/layers/heimdall_repos HEIMDALL_ORGS_SRC = $(shell find ${HEIMDALL_ORGS_DIR} -type f -name '*.py' -o -name '*.cfg') From 51ef79cf07881c82af5b7939dc6df45fdde2c37d Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 30 Apr 2024 14:21:22 -0400 Subject: [PATCH 05/37] updating tests, graphql query --- backend/Pipfile | 2 +- backend/Pipfile.lock | 59 +- .../tests/introspection_json.py | 141840 +++++++++++++++ .../tests/test_query_users_for_org.py | 103 +- .../update_github_org_users/util/github.py | 79 +- 5 files changed, 141991 insertions(+), 92 deletions(-) create mode 100644 backend/lambdas/scheduled/update_github_org_users/tests/introspection_json.py diff --git a/backend/Pipfile b/backend/Pipfile index 0b19c106..eda68fd6 100644 --- a/backend/Pipfile +++ b/backend/Pipfile @@ -18,7 +18,7 @@ pyjwt = "*" cryptography = "*" packaging = "==21.3" urllib3 = "<2" -gql = "*" +gql = {extras = ["requests"], version = "*"} [dev-packages] pytest = "==6.0.1" diff --git a/backend/Pipfile.lock b/backend/Pipfile.lock index 32cc6c3e..4abcaf3c 100644 --- a/backend/Pipfile.lock +++ b/backend/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "25bd0cc66d411b6cca22174c65416ffce8acfc9bc59fecea36d636d784f6b906" + "sha256": "898c86fce40ebe045bc41f7c9999c757d734feaddf97c7de75448a9cbc25279c" }, "pipfile-spec": 6, "requires": { @@ -34,12 +34,12 @@ }, "awscli": { "hashes": [ - "sha256:074d7c5cae0e556918a5a45fa1fc5449ade45625739b2c7e640964bd08ba96a4", - "sha256:457e365d33ca0ef27b2d8813909565f78749ad66d2b6113900ff534f2d4f933f" + "sha256:8d2311c491c42ca7ef5fa1dd6f623e2749372da76f99355612f0812bfa8bae47", + "sha256:ffb9e2169c96fe4cf84b45b0743512da821011714b42cf51b0473d6d1c67ab2e" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.32.91" + "version": "==1.32.94" }, "backoff": { "hashes": [ @@ -51,20 +51,20 @@ }, "boto3": { "hashes": [ - "sha256:5077917041adaaae15eeca340289547ef905ca7e11516e9bd22d394fb5057d2a", - "sha256:97fac686c47647db4b44e4789317e4aeecd38511d71e84f8d20abe33eb630ff1" + "sha256:22f65b3c9b7a419f8f39c2dddc421e14fab8cbb3bd8a9d467e874237d39f59b1", + "sha256:bbb87d641c73462e53b1777083b55c8f13921618ad08757478a8122985c56c13" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.34.91" + "version": "==1.34.94" }, "botocore": { "hashes": [ - "sha256:4d1b13f2b1c28ce1743b1e5895ae62bb7e67f892b51882164ea19c27a130852b", - "sha256:93ef7071292a1b2b9fc26537f8ae3a8227da1177969241939ea3fbdb1a1a1d0c" + "sha256:99b11be9a28f9051af4c96fa121e9c3f22a86d499abd773c9e868b2a38961bae", + "sha256:f00a79002e0cb9d6895ecd0919c506402850177d7b6c4d2634fa2da362d95bcb" ], "markers": "python_version >= '3.8'", - "version": "==1.34.91" + "version": "==1.34.94" }, "certifi": { "hashes": [ @@ -230,11 +230,11 @@ }, "colorama": { "hashes": [ - "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b", - "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2" + "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", + "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", - "version": "==0.4.4" + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", + "version": "==0.4.6" }, "cryptography": { "hashes": [ @@ -317,11 +317,13 @@ "version": "==1.2.1" }, "gql": { + "extras": [ + "requests" + ], "hashes": [ "sha256:c681d2273cc8164c0d6557c2d6fd4df190a009706a2044cd640be6a24526318e", "sha256:f1a4fc06186f25e5b4b5abaf3af359bc7ac65b38bcaa705b6507cd29dec2ecbf" ], - "index": "pypi", "version": "==3.6.0b2" }, "graphql-core": { @@ -595,6 +597,13 @@ "markers": "python_version >= '3.7'", "version": "==2.31.0" }, + "requests-toolbelt": { + "hashes": [ + "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", + "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06" + ], + "version": "==1.0.0" + }, "rsa": { "hashes": [ "sha256:78f9a9bf4e7be0c5ded4583326e7461e3a3c5aae24073648b4bdfa797d78c9d2", @@ -1157,20 +1166,20 @@ }, "boto3": { "hashes": [ - "sha256:5077917041adaaae15eeca340289547ef905ca7e11516e9bd22d394fb5057d2a", - "sha256:97fac686c47647db4b44e4789317e4aeecd38511d71e84f8d20abe33eb630ff1" + "sha256:22f65b3c9b7a419f8f39c2dddc421e14fab8cbb3bd8a9d467e874237d39f59b1", + "sha256:bbb87d641c73462e53b1777083b55c8f13921618ad08757478a8122985c56c13" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.34.91" + "version": "==1.34.94" }, "botocore": { "hashes": [ - "sha256:4d1b13f2b1c28ce1743b1e5895ae62bb7e67f892b51882164ea19c27a130852b", - "sha256:93ef7071292a1b2b9fc26537f8ae3a8227da1177969241939ea3fbdb1a1a1d0c" + "sha256:99b11be9a28f9051af4c96fa121e9c3f22a86d499abd773c9e868b2a38961bae", + "sha256:f00a79002e0cb9d6895ecd0919c506402850177d7b6c4d2634fa2da362d95bcb" ], "markers": "python_version >= '3.8'", - "version": "==1.34.91" + "version": "==1.34.94" }, "cached-property": { "hashes": [ @@ -1393,11 +1402,11 @@ }, "colorama": { "hashes": [ - "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b", - "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2" + "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", + "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", - "version": "==0.4.4" + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", + "version": "==0.4.6" }, "configargparse": { "hashes": [ diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/introspection_json.py b/backend/lambdas/scheduled/update_github_org_users/tests/introspection_json.py new file mode 100644 index 00000000..3ce28951 --- /dev/null +++ b/backend/lambdas/scheduled/update_github_org_users/tests/introspection_json.py @@ -0,0 +1,141840 @@ +introspection = { + "data": { + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": None, + "types": [ + { + "kind": "INPUT_OBJECT", + "name": "AbortQueuedMigrationsInput", + "description": "Autogenerated input type of AbortQueuedMigrations", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AbortQueuedMigrationsPayload", + "description": "Autogenerated return type of AbortQueuedMigrations", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "success","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AbortRepositoryMigrationInput", + "description": "Autogenerated input type of AbortRepositoryMigration", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "migrationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AbortRepositoryMigrationPayload", + "description": "Autogenerated return type of AbortRepositoryMigration", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "success","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AcceptEnterpriseAdministratorInvitationInput", + "description": "Autogenerated input type of AcceptEnterpriseAdministratorInvitation", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "invitationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AcceptEnterpriseAdministratorInvitationPayload", + "description": "Autogenerated return type of AcceptEnterpriseAdministratorInvitation", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitation","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AcceptTopicSuggestionInput", + "description": "Autogenerated input type of AcceptTopicSuggestion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AcceptTopicSuggestionPayload", + "description": "Autogenerated return type of AcceptTopicSuggestion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topic","args": [], + "type": { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + }, + "isDeprecated": True, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Actor", + "description": "Represents an object which can take actions on GitHub. Typically a User or Bot.", + "fields": [ + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Bot", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseUserAccount", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ActorLocation", + "description": "Location information for an actor", + "fields": [ + { + "name": "city","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "country","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "countryCode","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "region","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "regionCode","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ActorType", + "description": "The actor's type.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "USER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TEAM","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddAssigneesToAssignableInput", + "description": "Autogenerated input type of AddAssigneesToAssignable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "assignableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "assigneeIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddAssigneesToAssignablePayload", + "description": "Autogenerated return type of AddAssigneesToAssignable", + "fields": [ + { + "name": "assignable","args": [], + "type": { + "kind": "INTERFACE", + "name": "Assignable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCommentInput", + "description": "Autogenerated input type of AddComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "subjectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddCommentPayload", + "description": "Autogenerated return type of AddComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commentEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "IssueCommentEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "timelineEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "IssueTimelineItemEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddDiscussionCommentInput", + "description": "Autogenerated input type of AddDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "discussionId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "replyToId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddDiscussionCommentPayload", + "description": "Autogenerated return type of AddDiscussionComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comment","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddDiscussionPollVoteInput", + "description": "Autogenerated input type of AddDiscussionPollVote", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pollOptionId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddDiscussionPollVotePayload", + "description": "Autogenerated return type of AddDiscussionPollVote", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pollOption","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionPollOption", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddEnterpriseOrganizationMemberInput", + "description": "Autogenerated input type of AddEnterpriseOrganizationMember", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "userIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "role","type": { + "kind": "ENUM", + "name": "OrganizationMemberRole", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddEnterpriseOrganizationMemberPayload", + "description": "Autogenerated return type of AddEnterpriseOrganizationMember", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "users","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddEnterpriseSupportEntitlementInput", + "description": "Autogenerated input type of AddEnterpriseSupportEntitlement", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "login","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddEnterpriseSupportEntitlementPayload", + "description": "Autogenerated return type of AddEnterpriseSupportEntitlement", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddLabelsToLabelableInput", + "description": "Autogenerated input type of AddLabelsToLabelable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labelableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "labelIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddLabelsToLabelablePayload", + "description": "Autogenerated return type of AddLabelsToLabelable", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labelable","args": [], + "type": { + "kind": "INTERFACE", + "name": "Labelable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProjectCardInput", + "description": "Autogenerated input type of AddProjectCard", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectColumnId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "contentId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "note","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddProjectCardPayload", + "description": "Autogenerated return type of AddProjectCard", + "fields": [ + { + "name": "cardEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectCardEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectColumn","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectColumn", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProjectColumnInput", + "description": "Autogenerated input type of AddProjectColumn", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddProjectColumnPayload", + "description": "Autogenerated return type of AddProjectColumn", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "columnEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectColumnEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProjectV2DraftIssueInput", + "description": "Autogenerated input type of AddProjectV2DraftIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "assigneeIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddProjectV2DraftIssuePayload", + "description": "Autogenerated return type of AddProjectV2DraftIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectItem","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProjectV2ItemByIdInput", + "description": "Autogenerated input type of AddProjectV2ItemById", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "contentId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddProjectV2ItemByIdPayload", + "description": "Autogenerated return type of AddProjectV2ItemById", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewCommentInput", + "description": "Autogenerated input type of AddPullRequestReviewComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "commitOID","type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "path","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "position","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "inReplyTo","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddPullRequestReviewCommentPayload", + "description": "Autogenerated return type of AddPullRequestReviewComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comment","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commentEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewCommentEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewInput", + "description": "Autogenerated input type of AddPullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "commitOID","type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "event","type": { + "kind": "ENUM", + "name": "PullRequestReviewEvent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "comments","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DraftPullRequestReviewComment", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "threads","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DraftPullRequestReviewThread", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddPullRequestReviewPayload", + "description": "Autogenerated return type of AddPullRequestReview", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReview","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewThreadInput", + "description": "Autogenerated input type of AddPullRequestReviewThread", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "line","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "side","type": { + "kind": "ENUM", + "name": "DiffSide", + "ofType": None + }, + "defaultValue": "RIGHT" + }, + { + "name": "startLine","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "startSide","type": { + "kind": "ENUM", + "name": "DiffSide", + "ofType": None + }, + "defaultValue": "RIGHT" + }, + { + "name": "subjectType","type": { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "ofType": None + }, + "defaultValue": "LINE" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddPullRequestReviewThreadPayload", + "description": "Autogenerated return type of AddPullRequestReviewThread", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "thread","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewThreadReplyInput", + "description": "Autogenerated input type of AddPullRequestReviewThreadReply", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewThreadId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddPullRequestReviewThreadReplyPayload", + "description": "Autogenerated return type of AddPullRequestReviewThreadReply", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comment","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddReactionInput", + "description": "Autogenerated input type of AddReaction", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "subjectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "content","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddReactionPayload", + "description": "Autogenerated return type of AddReaction", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reaction","args": [], + "type": { + "kind": "OBJECT", + "name": "Reaction", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStarInput", + "description": "Autogenerated input type of AddStar", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "starrableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddStarPayload", + "description": "Autogenerated return type of AddStar", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "starrable","args": [], + "type": { + "kind": "INTERFACE", + "name": "Starrable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddUpvoteInput", + "description": "Autogenerated input type of AddUpvote", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "subjectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddUpvotePayload", + "description": "Autogenerated return type of AddUpvote", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "INTERFACE", + "name": "Votable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "AddVerifiableDomainInput", + "description": "Autogenerated input type of AddVerifiableDomain", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "domain","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddVerifiableDomainPayload", + "description": "Autogenerated return type of AddVerifiableDomain", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "domain","args": [], + "type": { + "kind": "OBJECT", + "name": "VerifiableDomain", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddedToMergeQueueEvent", + "description": "Represents an 'added_to_merge_queue' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enqueuer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeQueue","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AddedToProjectEvent", + "description": "Represents a 'added_to_project' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectCard","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectCard", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectColumnName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "AnnouncementBanner", + "description": "Represents an announcement banner.", + "fields": [ + { + "name": "announcement","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "announcementExpiresAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "announcementUserDismissible","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "App", + "description": "A GitHub App.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListEntries","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for IP allow list entries returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IpAllowListEntryOrder", + "ofType": None + }, + "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IpAllowListEntryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "logoBackgroundColor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "logoUrl","args": [ + { + "name": "size", + "description": "The size of the resulting image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "slug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ApproveDeploymentsPayload", + "description": "Autogenerated return type of ApproveDeployments", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployments","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ApproveVerifiableDomainInput", + "description": "Autogenerated input type of ApproveVerifiableDomain", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ApproveVerifiableDomainPayload", + "description": "Autogenerated return type of ApproveVerifiableDomain", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "domain","args": [], + "type": { + "kind": "OBJECT", + "name": "VerifiableDomain", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ArchiveProjectV2ItemInput", + "description": "Autogenerated input type of ArchiveProjectV2Item", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "itemId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ArchiveProjectV2ItemPayload", + "description": "Autogenerated return type of ArchiveProjectV2Item", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ArchiveRepositoryInput", + "description": "Autogenerated input type of ArchiveRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ArchiveRepositoryPayload", + "description": "Autogenerated return type of ArchiveRepository", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Assignable", + "description": "An object that can have users assigned to it.", + "fields": [ + { + "name": "assignees","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "AssignedEvent", + "description": "Represents an 'assigned' event on any assignable object.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assignable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Assignable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assignee","args": [], + "type": { + "kind": "UNION", + "name": "Assignee", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC." + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "Assignee", + "description": "Types that can be assigned to issues.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Bot", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "INTERFACE", + "name": "AuditEntry", + "description": "An entry in the audit log.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposClearAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OauthApplicationCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgAddBillingManagerAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgBlockUserAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableOauthAppRestrictionsAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableSamlAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableTwoFactorRequirementAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableOauthAppRestrictionsAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableSamlAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableTwoFactorRequirementAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteToBusinessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessApprovedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessBlockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessDeniedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessRequestedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessUnblockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveBillingManagerAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveOutsideCollaboratorAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUnblockUserAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoArchivedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoChangeMergeSettingAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigLockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoDestroyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddRepositoryAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamChangeParentTeamAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveRepositoryAuditEntry", + "ofType": None + } + ] + }, + { + "kind": "UNION", + "name": "AuditEntryActor", + "description": "Types that can initiate an audit log event.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Bot", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AuditLogOrder", + "description": "Ordering options for Audit Log connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "ENUM", + "name": "AuditLogOrderField", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "AuditLogOrderField", + "description": "Properties by which Audit Log connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AutoMergeDisabledEvent", + "description": "Represents a 'auto_merge_disabled' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "disabler","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reasonCode","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AutoMergeEnabledEvent", + "description": "Represents a 'auto_merge_enabled' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enabler","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AutoMergeRequest", + "description": "Represents an auto-merge request for a pull request", + "fields": [ + { + "name": "authorEmail","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitBody","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitHeadline","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enabledAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enabledBy","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeMethod","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AutoRebaseEnabledEvent", + "description": "Represents a 'auto_rebase_enabled' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enabler","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AutoSquashEnabledEvent", + "description": "Represents a 'auto_squash_enabled' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enabler","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AutomaticBaseChangeFailedEvent", + "description": "Represents a 'automatic_base_change_failed' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "newBase","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oldBase","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "AutomaticBaseChangeSucceededEvent", + "description": "Represents a 'automatic_base_change_succeeded' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "newBase","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oldBase","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "Base64String", + "description": "A (potentially binary) string encoded using base64.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BaseRefChangedEvent", + "description": "Represents a 'base_ref_changed' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "currentRefName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "previousRefName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BaseRefDeletedEvent", + "description": "Represents a 'base_ref_deleted' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "baseRefName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BaseRefForcePushedEvent", + "description": "Represents a 'base_ref_force_pushed' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "afterCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "beforeCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "BigInt", + "description": "Represents non-fractional signed whole numeric values. Since the value may exceed the size of a 32-bit integer, it's encoded as a string.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Blame", + "description": "Represents a Git blame.", + "fields": [ + { + "name": "ranges","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BlameRange", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BlameRange", + "description": "Represents a range of information from a Git blame.", + "fields": [ + { + "name": "age","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "endingLine","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startingLine","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Blob", + "description": "Represents a Git blob.", + "fields": [ + { + "name": "abbreviatedOid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "byteSize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isBinary","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isTruncated","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "text","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "Represents `true` or `false` values.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Bot", + "description": "A special type of user which takes actions on behalf of GitHub Apps.", + "fields": [ + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "BranchActorAllowanceActor", + "description": "Types which can be actors for `BranchActorAllowance` objects.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "BranchNamePatternParameters", + "description": "Parameters to be used for the branch_name_pattern rule", + "fields": [ + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "negate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operator","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pattern","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "BranchNamePatternParametersInput", + "description": "Parameters to be used for the branch_name_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "negate","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "operator","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "pattern","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "description": "A branch protection rule.", + "fields": [ + { + "name": "allowsDeletions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "allowsForcePushes","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blocksCreations","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "branchProtectionRuleConflicts","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflictConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bypassForcePushAllowances","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BypassForcePushAllowanceConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bypassPullRequestAllowances","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BypassPullRequestAllowanceConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismissesStaleReviews","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isAdminEnforced","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockAllowsFetchAndMerge","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockBranch","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "matchingRefs","args": [ + { + "name": "query", + "description": "Filters refs with query on name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RefConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pattern","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pushAllowances","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PushAllowanceConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requireLastPushApproval","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiredApprovingReviewCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiredDeploymentEnvironments","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiredStatusCheckContexts","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiredStatusChecks","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RequiredStatusCheckDescription", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresApprovingReviews","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresCodeOwnerReviews","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresCommitSignatures","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresConversationResolution","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresDeployments","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresLinearHistory","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresStatusChecks","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresStrictStatusChecks","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restrictsPushes","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restrictsReviewDismissals","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewDismissalAllowances","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReviewDismissalAllowanceConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflict", + "description": "A conflict between two branch protection rules.", + "fields": [ + { + "name": "branchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "conflictingBranchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflictConnection", + "description": "The connection type for BranchProtectionRuleConflict.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflictEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflict", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflictEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflict", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleConnection", + "description": "The connection type for BranchProtectionRule.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BranchProtectionRuleEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "BulkSponsorship", + "description": "Information about a sponsorship to make for a user or organization with a GitHub Sponsors profile, as part of sponsoring many users or organizations at once.", + "fields": None, + "inputFields": [ + { + "name": "sponsorableId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "amount","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "BypassActor", + "description": "Types that can represent a repository ruleset bypass actor.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "BypassForcePushAllowance", + "description": "A user, team, or app who has the ability to bypass a force push requirement on a protected branch.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "BranchActorAllowanceActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "branchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BypassForcePushAllowanceConnection", + "description": "The connection type for BypassForcePushAllowance.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BypassForcePushAllowanceEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BypassForcePushAllowance", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BypassForcePushAllowanceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "BypassForcePushAllowance", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BypassPullRequestAllowance", + "description": "A user, team, or app who has the ability to bypass a pull request requirement on a protected branch.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "BranchActorAllowanceActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "branchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BypassPullRequestAllowanceConnection", + "description": "The connection type for BypassPullRequestAllowance.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BypassPullRequestAllowanceEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BypassPullRequestAllowance", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "BypassPullRequestAllowanceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "BypassPullRequestAllowance", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CVSS", + "description": "The Common Vulnerability Scoring System", + "fields": [ + { + "name": "score","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "vectorString","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CWE", + "description": "A common weakness enumeration", + "fields": [ + { + "name": "cweId","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CWEConnection", + "description": "The connection type for CWE.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CWEEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CWE", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CWEEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CWE", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelEnterpriseAdminInvitationInput", + "description": "Autogenerated input type of CancelEnterpriseAdminInvitation", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "invitationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CancelEnterpriseAdminInvitationPayload", + "description": "Autogenerated return type of CancelEnterpriseAdminInvitation", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitation","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelSponsorshipInput", + "description": "Autogenerated input type of CancelSponsorship", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CancelSponsorshipPayload", + "description": "Autogenerated return type of CancelSponsorship", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsTier","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeUserStatusInput", + "description": "Autogenerated input type of ChangeUserStatus", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "emoji","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "message","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "limitedAvailability","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "expiresAt","type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ChangeUserStatusPayload", + "description": "Autogenerated return type of ChangeUserStatus", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "status","args": [], + "type": { + "kind": "OBJECT", + "name": "UserStatus", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckAnnotation", + "description": "A single check annotation.", + "fields": [ + { + "name": "annotationLevel","args": [], + "type": { + "kind": "ENUM", + "name": "CheckAnnotationLevel", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blobUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "location","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckAnnotationSpan", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rawDetails","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckAnnotationConnection", + "description": "The connection type for CheckAnnotation.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckAnnotationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckAnnotation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckAnnotationData", + "description": "Information from a check run analysis to specific lines of code.", + "fields": None, + "inputFields": [ + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "location","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CheckAnnotationRange", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "annotationLevel","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CheckAnnotationLevel", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "message","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "rawDetails","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckAnnotationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CheckAnnotation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "CheckAnnotationLevel", + "description": "Represents an annotation's information level.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "FAILURE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NOTICE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WARNING","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckAnnotationPosition", + "description": "A character position in a check annotation.", + "fields": [ + { + "name": "column","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "line","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckAnnotationRange", + "description": "Information from a check run analysis to specific lines of code.", + "fields": None, + "inputFields": [ + { + "name": "startLine","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "startColumn","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "endLine","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "endColumn","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckAnnotationSpan", + "description": "An inclusive pair of positions for a check annotation.", + "fields": [ + { + "name": "end","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckAnnotationPosition", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "start","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckAnnotationPosition", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "CheckConclusionState", + "description": "The possible states for a check suite or run conclusion.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ACTION_REQUIRED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TIMED_OUT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CANCELLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILURE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUCCESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NEUTRAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SKIPPED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "STARTUP_FAILURE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "STALE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckRun", + "description": "A check run.", + "fields": [ + { + "name": "annotations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CheckAnnotationConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "checkSuite","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "completedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "conclusion","args": [], + "type": { + "kind": "ENUM", + "name": "CheckConclusionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployment","args": [], + "type": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "detailsUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "externalId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isRequired","args": [ + { + "name": "pullRequestId", + "description": "The id of the pull request this is required for", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestNumber", + "description": "The number of the pull request this is required for", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pendingDeploymentRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "DeploymentRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permalink","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "status","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CheckStatusState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "steps","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "number", + "description": "Step number", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CheckStepConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "summary","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "text","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RequirableByPullRequest", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckRunAction", + "description": "Possible further actions the integrator can perform.", + "fields": None, + "inputFields": [ + { + "name": "label","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "identifier","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckRunConnection", + "description": "The connection type for CheckRun.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckRunEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckRunEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckRunFilter", + "description": "The filters that are available when fetching check runs.", + "fields": None, + "inputFields": [ + { + "name": "checkType","type": { + "kind": "ENUM", + "name": "CheckRunType", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "appId","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "checkName","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "status","type": { + "kind": "ENUM", + "name": "CheckStatusState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "statuses","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CheckStatusState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "conclusions","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CheckConclusionState", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckRunOutput", + "description": "Descriptive details about the check run.", + "fields": None, + "inputFields": [ + { + "name": "title","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "summary","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "text","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "annotations","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CheckAnnotationData", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "images","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CheckRunOutputImage", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckRunOutputImage", + "description": "Images attached to the check run output displayed in the GitHub pull request UI.", + "fields": None, + "inputFields": [ + { + "name": "alt","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "imageUrl","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "caption","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "CheckRunState", + "description": "The possible states of a check run in a status rollup.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ACTION_REQUIRED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CANCELLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMPLETED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILURE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN_PROGRESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NEUTRAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "QUEUED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SKIPPED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "STALE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "STARTUP_FAILURE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUCCESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TIMED_OUT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WAITING","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckRunStateCount", + "description": "Represents a count of the state of a check run.", + "fields": [ + { + "name": "count","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CheckRunState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "CheckRunType", + "description": "The possible types of check runs.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LATEST","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "CheckStatusState", + "description": "The possible states for a check suite or run status.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "REQUESTED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "QUEUED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN_PROGRESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMPLETED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WAITING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckStep", + "description": "A single check step.", + "fields": [ + { + "name": "completedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "conclusion","args": [], + "type": { + "kind": "ENUM", + "name": "CheckConclusionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "externalId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "secondsToCompletion","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "status","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CheckStatusState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckStepConnection", + "description": "The connection type for CheckStep.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckStepEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckStep", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckStepEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CheckStep", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckSuite", + "description": "A check suite.", + "fields": [ + { + "name": "app","args": [], + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "branch","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "checkRuns","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "filterBy", + "description": "Filters the check runs by this type.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CheckRunFilter", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CheckRunConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "conclusion","args": [], + "type": { + "kind": "ENUM", + "name": "CheckConclusionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "matchingPullRequests","args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequestConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "push","args": [], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "status","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CheckStatusState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "workflowRun","args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowRun", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckSuiteAutoTriggerPreference", + "description": "The auto-trigger preferences that are available for check suites.", + "fields": None, + "inputFields": [ + { + "name": "appId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "setting","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckSuiteConnection", + "description": "The connection type for CheckSuite.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckSuiteEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CheckSuiteEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckSuiteFilter", + "description": "The filters that are available when fetching check suites.", + "fields": None, + "inputFields": [ + { + "name": "appId","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "checkName","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "Claimable", + "description": "An object which can have its data claimed or claim data from another.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ClearLabelsFromLabelableInput", + "description": "Autogenerated input type of ClearLabelsFromLabelable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labelableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ClearLabelsFromLabelablePayload", + "description": "Autogenerated return type of ClearLabelsFromLabelable", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labelable","args": [], + "type": { + "kind": "INTERFACE", + "name": "Labelable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ClearProjectV2ItemFieldValueInput", + "description": "Autogenerated input type of ClearProjectV2ItemFieldValue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "itemId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "fieldId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ClearProjectV2ItemFieldValuePayload", + "description": "Autogenerated return type of ClearProjectV2ItemFieldValue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2Item","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CloneProjectInput", + "description": "Autogenerated input type of CloneProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "targetOwnerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "sourceId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "includeWorkflows","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "public","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CloneProjectPayload", + "description": "Autogenerated return type of CloneProject", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "jobStatusId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CloneTemplateRepositoryInput", + "description": "Autogenerated input type of CloneTemplateRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "visibility","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "includeAllBranches","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CloneTemplateRepositoryPayload", + "description": "Autogenerated return type of CloneTemplateRepository", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Closable", + "description": "An object that can be closed", + "fields": [ + { + "name": "closed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanClose","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReopen","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CloseDiscussionInput", + "description": "Autogenerated input type of CloseDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "discussionId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "reason","type": { + "kind": "ENUM", + "name": "DiscussionCloseReason", + "ofType": None + }, + "defaultValue": "RESOLVED" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CloseDiscussionPayload", + "description": "Autogenerated return type of CloseDiscussion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CloseIssueInput", + "description": "Autogenerated input type of CloseIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "issueId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "stateReason","type": { + "kind": "ENUM", + "name": "IssueClosedStateReason", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CloseIssuePayload", + "description": "Autogenerated return type of CloseIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ClosePullRequestInput", + "description": "Autogenerated input type of ClosePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ClosePullRequestPayload", + "description": "Autogenerated return type of ClosePullRequest", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ClosedEvent", + "description": "Represents a 'closed' event on any `Closable`.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Closable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closer","args": [], + "type": { + "kind": "UNION", + "name": "Closer", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stateReason","args": [], + "type": { + "kind": "ENUM", + "name": "IssueStateReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "Closer", + "description": "The object which triggered a `ClosedEvent`.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "CodeOfConduct", + "description": "The Code of Conduct for a repository", + "fields": [ + { + "name": "body","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "key","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "CollaboratorAffiliation", + "description": "Collaborators affiliation level with a subject.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OUTSIDE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DIRECT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Comment", + "description": "Represents a comment.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "GistComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + } + ] + }, + { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "description": "A comment author association with repository.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MEMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OWNER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MANNEQUIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COLLABORATOR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONTRIBUTOR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FIRST_TIME_CONTRIBUTOR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FIRST_TIMER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "description": "The possible errors that will prevent a user from updating a comment.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ARCHIVED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INSUFFICIENT_ACCESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LOCKED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LOGIN_REQUIRED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MAINTENANCE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VERIFIED_EMAIL_REQUIRED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DENIED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommentDeletedEvent", + "description": "Represents a 'comment_deleted' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletedCommentAuthor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Commit", + "description": "Represents a Git commit.", + "fields": [ + { + "name": "abbreviatedOid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "additions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "associatedPullRequests","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PullRequestOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequestConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "author","args": [], + "type": { + "kind": "OBJECT", + "name": "GitActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authoredByCommitter","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authoredDate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authors","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GitActorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blame","args": [ + { + "name": "path", + "description": "The file whose Git blame information you want.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Blame", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "changedFiles","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "`changedFiles` will be removed. Use `changedFilesIfAvailable` instead. Removal on 2023-01-01 UTC." + }, + { + "name": "changedFilesIfAvailable","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "checkSuites","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "filterBy", + "description": "Filters the check suites by this type.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CheckSuiteFilter", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CheckSuiteConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "committedDate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "committedViaWeb","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "committer","args": [], + "type": { + "kind": "OBJECT", + "name": "GitActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployments","args": [ + { + "name": "environments", + "description": "Environments to list deployments for", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for deployments returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeploymentOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeploymentConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "file","args": [ + { + "name": "path", + "description": "The path for the file", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "TreeEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "history","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "path", + "description": "If non-null, filters history to only show commits touching files under this path.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "author", + "description": "If non-null, filters history to only show commits with matching authorship.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommitAuthor", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "since", + "description": "Allows specifying a beginning time or date for fetching commits.", + "type": { + "kind": "SCALAR", + "name": "GitTimestamp", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "until", + "description": "Allows specifying an ending time or date for fetching commits.", + "type": { + "kind": "SCALAR", + "name": "GitTimestamp", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitHistoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "messageBody","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "messageBodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "messageHeadline","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "messageHeadlineHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "onBehalfOf","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parents","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pushedDate","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": True, + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signature","args": [], + "type": { + "kind": "INTERFACE", + "name": "GitSignature", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "status","args": [], + "type": { + "kind": "OBJECT", + "name": "Status", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "statusCheckRollup","args": [], + "type": { + "kind": "OBJECT", + "name": "StatusCheckRollup", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "submodules","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SubmoduleConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tarballUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tree","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Tree", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "treeResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "treeUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSubscribe","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerSubscription","args": [], + "type": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "zipballUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitAuthor", + "description": "Specifies an author for filtering Git commits.", + "fields": None, + "inputFields": [ + { + "name": "id","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "emails","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitAuthorEmailPatternParameters", + "description": "Parameters to be used for the commit_author_email_pattern rule", + "fields": [ + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "negate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operator","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pattern","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitAuthorEmailPatternParametersInput", + "description": "Parameters to be used for the commit_author_email_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "negate","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "operator","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "pattern","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitComment", + "description": "Represents a comment on a given Commit.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMinimized","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizedReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "position","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMinimize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Minimizable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitCommentConnection", + "description": "The connection type for CommitComment.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitCommentEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitCommentThread", + "description": "A thread of comments on a commit.", + "fields": [ + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "position","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitConnection", + "description": "The connection type for Commit.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitContributionOrder", + "description": "Ordering options for commit contribution connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommitContributionOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "CommitContributionOrderField", + "description": "Properties by which commit contribution connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OCCURRED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMIT_COUNT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitContributionsByRepository", + "description": "This aggregates commits made by a user within one repository.", + "fields": [ + { + "name": "contributions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for commit contributions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommitContributionOrder", + "ofType": None + }, + "defaultValue": "{field: OCCURRED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedCommitContributionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitHistoryConnection", + "description": "The connection type for Commit.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitMessage", + "description": "A message to include with a new commit", + "fields": None, + "inputFields": [ + { + "name": "headline","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitMessagePatternParameters", + "description": "Parameters to be used for the commit_message_pattern rule", + "fields": [ + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "negate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operator","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pattern","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitMessagePatternParametersInput", + "description": "Parameters to be used for the commit_message_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "negate","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "operator","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "pattern","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CommittableBranch", + "fields": None, + "inputFields": [ + { + "name": "id","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryNameWithOwner","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "branchName","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CommitterEmailPatternParameters", + "description": "Parameters to be used for the committer_email_pattern rule", + "fields": [ + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "negate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operator","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pattern","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitterEmailPatternParametersInput", + "description": "Parameters to be used for the committer_email_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "negate","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "operator","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "pattern","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Comparison", + "description": "Represents a comparison between two commit revisions.", + "fields": [ + { + "name": "aheadBy","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "baseTarget","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "behindBy","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ComparisonCommitConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headTarget","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "status","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ComparisonStatus", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ComparisonCommitConnection", + "description": "The connection type for Commit.", + "fields": [ + { + "name": "authorCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ComparisonStatus", + "description": "The status of a git comparison between two refs.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DIVERGED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AHEAD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BEHIND","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IDENTICAL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ConnectedEvent", + "description": "Represents a 'connected' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCrossRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "source","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ReferencedSubject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ReferencedSubject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ContributingGuidelines", + "description": "The Contributing Guidelines for a repository.", + "fields": [ + { + "name": "body","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Contribution", + "description": "Represents a contribution a user made on GitHub, such as opening an issue.", + "fields": [ + { + "name": "isRestricted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "occurredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreatedCommitContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CreatedIssueContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CreatedRepositoryContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "JoinedGitHubContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RestrictedContribution", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ContributionCalendar", + "description": "A calendar of contributions made on GitHub by a user.", + "fields": [ + { + "name": "colors","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isHalloween","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "months","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ContributionCalendarMonth", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalContributions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "weeks","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ContributionCalendarWeek", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ContributionCalendarDay", + "description": "Represents a single day of contributions on GitHub by a user.", + "fields": [ + { + "name": "color","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contributionCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contributionLevel","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ContributionLevel", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "date","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "weekday","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ContributionCalendarMonth", + "description": "A month of contributions in a user's contribution graph.", + "fields": [ + { + "name": "firstDay","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalWeeks","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "year","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ContributionCalendarWeek", + "description": "A week of contributions in a user's contribution graph.", + "fields": [ + { + "name": "contributionDays","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ContributionCalendarDay", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "firstDay","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ContributionLevel", + "description": "Varying levels of contributions from none to many.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FIRST_QUARTILE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SECOND_QUARTILE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "THIRD_QUARTILE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FOURTH_QUARTILE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "description": "Ordering options for contribution connections.", + "fields": None, + "inputFields": [ + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ContributionsCollection", + "description": "A contributions collection aggregates contributions such as opened issues and commits created by a user.", + "fields": [ + { + "name": "commitContributionsByRepository","args": [ + { + "name": "maxRepositories", + "description": "How many repositories should be included.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "25" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitContributionsByRepository", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contributionCalendar","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ContributionCalendar", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contributionYears","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "doesEndInCurrentMonth","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "earliestRestrictedContributionDate","args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "endedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "firstIssueContribution","args": [], + "type": { + "kind": "UNION", + "name": "CreatedIssueOrRestrictedContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "firstPullRequestContribution","args": [], + "type": { + "kind": "UNION", + "name": "CreatedPullRequestOrRestrictedContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "firstRepositoryContribution","args": [], + "type": { + "kind": "UNION", + "name": "CreatedRepositoryOrRestrictedContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasActivityInThePast","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasAnyContributions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasAnyRestrictedContributions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSingleDay","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issueContributions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "excludeFirst", + "description": "Should the user's first issue ever be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "excludePopular", + "description": "Should the user's most commented issue be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "ofType": None + }, + "defaultValue": "{direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIssueContributionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issueContributionsByRepository","args": [ + { + "name": "maxRepositories", + "description": "How many repositories should be included.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "25" + }, + { + "name": "excludeFirst", + "description": "Should the user's first issue ever be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "excludePopular", + "description": "Should the user's most commented issue be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueContributionsByRepository", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "joinedGitHubContribution","args": [], + "type": { + "kind": "OBJECT", + "name": "JoinedGitHubContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "latestRestrictedContributionDate","args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mostRecentCollectionWithActivity","args": [], + "type": { + "kind": "OBJECT", + "name": "ContributionsCollection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mostRecentCollectionWithoutActivity","args": [], + "type": { + "kind": "OBJECT", + "name": "ContributionsCollection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "popularIssueContribution","args": [], + "type": { + "kind": "OBJECT", + "name": "CreatedIssueContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "popularPullRequestContribution","args": [], + "type": { + "kind": "OBJECT", + "name": "CreatedPullRequestContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestContributions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "excludeFirst", + "description": "Should the user's first pull request ever be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "excludePopular", + "description": "Should the user's most commented pull request be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "ofType": None + }, + "defaultValue": "{direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestContributionsByRepository","args": [ + { + "name": "maxRepositories", + "description": "How many repositories should be included.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "25" + }, + { + "name": "excludeFirst", + "description": "Should the user's first pull request ever be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "excludePopular", + "description": "Should the user's most commented pull request be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestContributionsByRepository", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReviewContributions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "ofType": None + }, + "defaultValue": "{direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReviewContributionsByRepository","args": [ + { + "name": "maxRepositories", + "description": "How many repositories should be included.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "25" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewContributionsByRepository", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryContributions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "excludeFirst", + "description": "Should the user's first repository ever be excluded from the result.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "ofType": None + }, + "defaultValue": "{direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedRepositoryContributionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restrictedContributionsCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCommitContributions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalIssueContributions","args": [ + { + "name": "excludeFirst", + "description": "Should the user's first issue ever be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "excludePopular", + "description": "Should the user's most commented issue be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalPullRequestContributions","args": [ + { + "name": "excludeFirst", + "description": "Should the user's first pull request ever be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "excludePopular", + "description": "Should the user's most commented pull request be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalPullRequestReviewContributions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalRepositoriesWithContributedCommits","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalRepositoriesWithContributedIssues","args": [ + { + "name": "excludeFirst", + "description": "Should the user's first issue ever be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "excludePopular", + "description": "Should the user's most commented issue be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalRepositoriesWithContributedPullRequestReviews","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalRepositoriesWithContributedPullRequests","args": [ + { + "name": "excludeFirst", + "description": "Should the user's first pull request ever be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "excludePopular", + "description": "Should the user's most commented pull request be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalRepositoryContributions","args": [ + { + "name": "excludeFirst", + "description": "Should the user's first repository ever be excluded from this count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ConvertProjectCardNoteToIssueInput", + "description": "Autogenerated input type of ConvertProjectCardNoteToIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectCardId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ConvertProjectCardNoteToIssuePayload", + "description": "Autogenerated return type of ConvertProjectCardNoteToIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectCard","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectCard", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ConvertPullRequestToDraftInput", + "description": "Autogenerated input type of ConvertPullRequestToDraft", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ConvertPullRequestToDraftPayload", + "description": "Autogenerated return type of ConvertPullRequestToDraft", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ConvertToDraftEvent", + "description": "Represents a 'convert_to_draft' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ConvertedNoteToIssueEvent", + "description": "Represents a 'converted_note_to_issue' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectCard","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectCard", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectColumnName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ConvertedToDiscussionEvent", + "description": "Represents a 'converted_to_discussion' event on a given issue.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CopyProjectV2Input", + "description": "Autogenerated input type of CopyProjectV2", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "includeDraftIssues","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CopyProjectV2Payload", + "description": "Autogenerated return type of CopyProjectV2", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateAttributionInvitationInput", + "description": "Autogenerated input type of CreateAttributionInvitation", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "sourceId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "targetId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateAttributionInvitationPayload", + "description": "Autogenerated return type of CreateAttributionInvitation", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "source","args": [], + "type": { + "kind": "UNION", + "name": "Claimable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "target","args": [], + "type": { + "kind": "UNION", + "name": "Claimable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateBranchProtectionRuleInput", + "description": "Autogenerated input type of CreateBranchProtectionRule", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "pattern","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "requiresApprovingReviews","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiredApprovingReviewCount","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresCommitSignatures","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresLinearHistory","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "blocksCreations","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "allowsForcePushes","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "allowsDeletions","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isAdminEnforced","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresStatusChecks","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresStrictStatusChecks","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresCodeOwnerReviews","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "dismissesStaleReviews","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "restrictsReviewDismissals","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "reviewDismissalActorIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "bypassPullRequestActorIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "bypassForcePushActorIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "restrictsPushes","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pushActorIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "requiredStatusCheckContexts","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "requiredStatusChecks","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusCheckInput", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "requiresDeployments","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiredDeploymentEnvironments","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "requiresConversationResolution","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requireLastPushApproval","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "lockBranch","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "lockAllowsFetchAndMerge","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateBranchProtectionRulePayload", + "description": "Autogenerated return type of CreateBranchProtectionRule", + "fields": [ + { + "name": "branchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateCheckRunInput", + "description": "Autogenerated input type of CreateCheckRun", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "headSha","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "detailsUrl","type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "externalId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "status","type": { + "kind": "ENUM", + "name": "RequestableCheckStatusState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "startedAt","type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "conclusion","type": { + "kind": "ENUM", + "name": "CheckConclusionState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "completedAt","type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "output","type": { + "kind": "INPUT_OBJECT", + "name": "CheckRunOutput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "actions","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CheckRunAction", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateCheckRunPayload", + "description": "Autogenerated return type of CreateCheckRun", + "fields": [ + { + "name": "checkRun","args": [], + "type": { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateCheckSuiteInput", + "description": "Autogenerated input type of CreateCheckSuite", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "headSha","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateCheckSuitePayload", + "description": "Autogenerated return type of CreateCheckSuite", + "fields": [ + { + "name": "checkSuite","args": [], + "type": { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateCommitOnBranchInput", + "description": "Autogenerated input type of CreateCommitOnBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "branch","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommittableBranch", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "fileChanges","type": { + "kind": "INPUT_OBJECT", + "name": "FileChanges", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "message","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommitMessage", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "expectedHeadOid","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateCommitOnBranchPayload", + "description": "Autogenerated return type of CreateCommitOnBranch", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateDeploymentPayload", + "description": "Autogenerated return type of CreateDeployment", + "fields": [ + { + "name": "autoMerged","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployment","args": [], + "type": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateDeploymentStatusInput", + "description": "Autogenerated input type of CreateDeploymentStatus", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "deploymentId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "state","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DeploymentStatusState", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + { + "name": "environment","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "environmentUrl","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + { + "name": "autoInactive","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "logUrl","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateDeploymentStatusPayload", + "description": "Autogenerated return type of CreateDeploymentStatus", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deploymentStatus","args": [], + "type": { + "kind": "OBJECT", + "name": "DeploymentStatus", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateDiscussionInput", + "description": "Autogenerated input type of CreateDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "categoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateDiscussionPayload", + "description": "Autogenerated return type of CreateDiscussion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateEnterpriseOrganizationInput", + "description": "Autogenerated input type of CreateEnterpriseOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "login","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "profileName","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "billingEmail","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "adminLogins","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateEnterpriseOrganizationPayload", + "description": "Autogenerated return type of CreateEnterpriseOrganization", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateEnvironmentInput", + "description": "Autogenerated input type of CreateEnvironment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateEnvironmentPayload", + "description": "Autogenerated return type of CreateEnvironment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environment","args": [], + "type": { + "kind": "OBJECT", + "name": "Environment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateIpAllowListEntryInput", + "description": "Autogenerated input type of CreateIpAllowListEntry", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "allowListValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isActive","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateIpAllowListEntryPayload", + "description": "Autogenerated return type of CreateIpAllowListEntry", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListEntry","args": [], + "type": { + "kind": "OBJECT", + "name": "IpAllowListEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateIssueInput", + "description": "Autogenerated input type of CreateIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "assigneeIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "milestoneId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labelIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "projectIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "issueTemplate","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateIssuePayload", + "description": "Autogenerated return type of CreateIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateLabelInput", + "description": "Autogenerated input type of CreateLabel", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "color","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateLabelPayload", + "description": "Autogenerated return type of CreateLabel", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "label","args": [], + "type": { + "kind": "OBJECT", + "name": "Label", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateLinkedBranchInput", + "description": "Autogenerated input type of CreateLinkedBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "issueId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "oid","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateLinkedBranchPayload", + "description": "Autogenerated return type of CreateLinkedBranch", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "linkedBranch","args": [], + "type": { + "kind": "OBJECT", + "name": "LinkedBranch", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateMigrationSourceInput", + "description": "Autogenerated input type of CreateMigrationSource", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "url","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "accessToken","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "type","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MigrationSourceType", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "githubPat","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateMigrationSourcePayload", + "description": "Autogenerated return type of CreateMigrationSource", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "migrationSource","args": [], + "type": { + "kind": "OBJECT", + "name": "MigrationSource", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectInput", + "description": "Autogenerated input type of CreateProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "template","type": { + "kind": "ENUM", + "name": "ProjectTemplate", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateProjectPayload", + "description": "Autogenerated return type of CreateProject", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectV2FieldInput", + "description": "Autogenerated input type of CreateProjectV2Field", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "dataType","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2CustomFieldType", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "singleSelectOptions","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2SingleSelectFieldOptionInput", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateProjectV2FieldPayload", + "description": "Autogenerated return type of CreateProjectV2Field", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2Field","args": [], + "type": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectV2Input", + "description": "Autogenerated input type of CreateProjectV2", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "teamId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateProjectV2Payload", + "description": "Autogenerated return type of CreateProjectV2", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreatePullRequestInput", + "description": "Autogenerated input type of CreatePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "baseRefName","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "headRefName","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "headRepositoryId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "maintainerCanModify","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "draft","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatePullRequestPayload", + "description": "Autogenerated return type of CreatePullRequest", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateRefInput", + "description": "Autogenerated input type of CreateRef", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "oid","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateRefPayload", + "description": "Autogenerated return type of CreateRef", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateRepositoryInput", + "description": "Autogenerated input type of CreateRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "visibility","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "template","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "homepageUrl","type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasWikiEnabled","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "hasIssuesEnabled","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "teamId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateRepositoryPayload", + "description": "Autogenerated return type of CreateRepository", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateRepositoryRulesetInput", + "description": "Autogenerated input type of CreateRepositoryRuleset", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sourceId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "target","type": { + "kind": "ENUM", + "name": "RepositoryRulesetTarget", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "rules","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleInput", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "conditions","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleConditionsInput", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "enforcement","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RuleEnforcement", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "bypassActors","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRulesetBypassActorInput", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateRepositoryRulesetPayload", + "description": "Autogenerated return type of CreateRepositoryRuleset", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ruleset","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorsListingInput", + "description": "Autogenerated input type of CreateSponsorsListing", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "fiscalHostLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "fiscallyHostedProjectProfileUrl","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "billingCountryOrRegionCode","type": { + "kind": "ENUM", + "name": "SponsorsCountryOrRegionCode", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "residenceCountryOrRegionCode","type": { + "kind": "ENUM", + "name": "SponsorsCountryOrRegionCode", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "contactEmail","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "fullDescription","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateSponsorsListingPayload", + "description": "Autogenerated return type of CreateSponsorsListing", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsListing","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorsTierInput", + "description": "Autogenerated input type of CreateSponsorsTier", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "amount","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "isRecurring","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "repositoryId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryOwnerLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryName","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "welcomeMessage","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "publish","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateSponsorsTierPayload", + "description": "Autogenerated return type of CreateSponsorsTier", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsTier","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorshipInput", + "description": "Autogenerated input type of CreateSponsorship", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "tierId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "amount","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isRecurring","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "receiveEmails","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "privacyLevel","type": { + "kind": "ENUM", + "name": "SponsorshipPrivacy", + "ofType": None + }, + "defaultValue": "PUBLIC" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateSponsorshipPayload", + "description": "Autogenerated return type of CreateSponsorship", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorship","args": [], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorshipsInput", + "description": "Autogenerated input type of CreateSponsorships", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorLogin","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "sponsorships","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BulkSponsorship", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "receiveEmails","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "privacyLevel","type": { + "kind": "ENUM", + "name": "SponsorshipPrivacy", + "ofType": None + }, + "defaultValue": "PUBLIC" + }, + { + "name": "recurring","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateSponsorshipsPayload", + "description": "Autogenerated return type of CreateSponsorships", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorables","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateTeamDiscussionCommentInput", + "description": "Autogenerated input type of CreateTeamDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "discussionId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateTeamDiscussionCommentPayload", + "description": "Autogenerated return type of CreateTeamDiscussionComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamDiscussionComment","args": [], + "type": { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateTeamDiscussionInput", + "description": "Autogenerated input type of CreateTeamDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "teamId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "private","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateTeamDiscussionPayload", + "description": "Autogenerated return type of CreateTeamDiscussion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamDiscussion","args": [], + "type": { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateUserListInput", + "description": "Autogenerated input type of CreateUserList", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isPrivate","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreateUserListPayload", + "description": "Autogenerated return type of CreateUserList", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "list","args": [], + "type": { + "kind": "OBJECT", + "name": "UserList", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedCommitContribution", + "description": "Represents the contribution a user made by committing to a repository.", + "fields": [ + { + "name": "commitCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isRestricted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "occurredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Contribution", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedCommitContributionConnection", + "description": "The connection type for CreatedCommitContribution.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedCommitContributionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedCommitContribution", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedCommitContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CreatedCommitContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedIssueContribution", + "description": "Represents the contribution a user made on GitHub by opening an issue.", + "fields": [ + { + "name": "isRestricted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "occurredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Contribution", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedIssueContributionConnection", + "description": "The connection type for CreatedIssueContribution.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIssueContributionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIssueContribution", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedIssueContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CreatedIssueContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "CreatedIssueOrRestrictedContribution", + "description": "Represents either a issue the viewer can access or a restricted contribution.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreatedIssueContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RestrictedContribution", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestContribution", + "description": "Represents the contribution a user made on GitHub by opening a pull request.", + "fields": [ + { + "name": "isRestricted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "occurredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Contribution", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionConnection", + "description": "The connection type for CreatedPullRequestContribution.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestContribution", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CreatedPullRequestContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "CreatedPullRequestOrRestrictedContribution", + "description": "Represents either a pull request the viewer can access or a restricted contribution.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreatedPullRequestContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RestrictedContribution", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContribution", + "description": "Represents the contribution a user made by leaving a review on a pull request.", + "fields": [ + { + "name": "isRestricted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "occurredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReview","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Contribution", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionConnection", + "description": "The connection type for CreatedPullRequestReviewContribution.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContribution", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedRepositoryContribution", + "description": "Represents the contribution a user made on GitHub by creating a repository.", + "fields": [ + { + "name": "isRestricted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "occurredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Contribution", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedRepositoryContributionConnection", + "description": "The connection type for CreatedRepositoryContribution.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedRepositoryContributionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedRepositoryContribution", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "CreatedRepositoryContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "CreatedRepositoryContribution", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "CreatedRepositoryOrRestrictedContribution", + "description": "Represents either a repository the viewer can access or a restricted contribution.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreatedRepositoryContribution", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RestrictedContribution", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "CrossReferencedEvent", + "description": "Represents a mention made by one issue or pull request to another.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCrossRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "referencedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "source","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ReferencedSubject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "target","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ReferencedSubject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "willCloseTarget","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "Date", + "description": "An ISO-8601 encoded date string.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "DateTime", + "description": "An ISO-8601 encoded UTC date string.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeclineTopicSuggestionInput", + "description": "Autogenerated input type of DeclineTopicSuggestion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "reason", + "type": { + "kind": "ENUM", + "name": "TopicSuggestionDeclineReason", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeclineTopicSuggestionPayload", + "description": "Autogenerated return type of DeclineTopicSuggestion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topic","args": [], + "type": { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + }, + "isDeprecated": True, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DefaultRepositoryPermissionField", + "description": "The possible base permissions for repositories.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "READ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WRITE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "description": "Entities that can be deleted.", + "fields": [ + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "GistComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteBranchProtectionRuleInput", + "description": "Autogenerated input type of DeleteBranchProtectionRule", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "branchProtectionRuleId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteBranchProtectionRulePayload", + "description": "Autogenerated return type of DeleteBranchProtectionRule", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteDeploymentInput", + "description": "Autogenerated input type of DeleteDeployment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteDeploymentPayload", + "description": "Autogenerated return type of DeleteDeployment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteDiscussionCommentInput", + "description": "Autogenerated input type of DeleteDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteDiscussionCommentPayload", + "description": "Autogenerated return type of DeleteDiscussionComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comment","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteDiscussionInput", + "description": "Autogenerated input type of DeleteDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteDiscussionPayload", + "description": "Autogenerated return type of DeleteDiscussion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteEnvironmentInput", + "description": "Autogenerated input type of DeleteEnvironment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteEnvironmentPayload", + "description": "Autogenerated return type of DeleteEnvironment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteIpAllowListEntryInput", + "description": "Autogenerated input type of DeleteIpAllowListEntry", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ipAllowListEntryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteIpAllowListEntryPayload", + "description": "Autogenerated return type of DeleteIpAllowListEntry", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListEntry","args": [], + "type": { + "kind": "OBJECT", + "name": "IpAllowListEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteIssueCommentInput", + "description": "Autogenerated input type of DeleteIssueComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteIssueCommentPayload", + "description": "Autogenerated return type of DeleteIssueComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteIssueInput", + "description": "Autogenerated input type of DeleteIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "issueId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteIssuePayload", + "description": "Autogenerated return type of DeleteIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteLabelInput", + "description": "Autogenerated input type of DeleteLabel", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteLabelPayload", + "description": "Autogenerated return type of DeleteLabel", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteLinkedBranchInput", + "description": "Autogenerated input type of DeleteLinkedBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "linkedBranchId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteLinkedBranchPayload", + "description": "Autogenerated return type of DeleteLinkedBranch", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeletePackageVersionInput", + "description": "Autogenerated input type of DeletePackageVersion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "packageVersionId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeletePackageVersionPayload", + "description": "Autogenerated return type of DeletePackageVersion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "success","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectCardInput", + "description": "Autogenerated input type of DeleteProjectCard", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "cardId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteProjectCardPayload", + "description": "Autogenerated return type of DeleteProjectCard", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "column","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectColumn", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletedCardId","args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectColumnInput", + "description": "Autogenerated input type of DeleteProjectColumn", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "columnId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteProjectColumnPayload", + "description": "Autogenerated return type of DeleteProjectColumn", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletedColumnId","args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectInput", + "description": "Autogenerated input type of DeleteProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteProjectPayload", + "description": "Autogenerated return type of DeleteProject", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "INTERFACE", + "name": "ProjectOwner", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2FieldInput", + "description": "Autogenerated input type of DeleteProjectV2Field", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "fieldId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteProjectV2FieldPayload", + "description": "Autogenerated return type of DeleteProjectV2Field", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2Field","args": [], + "type": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2Input", + "description": "Autogenerated input type of DeleteProjectV2", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2ItemInput", + "description": "Autogenerated input type of DeleteProjectV2Item", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "itemId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteProjectV2ItemPayload", + "description": "Autogenerated return type of DeleteProjectV2Item", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletedItemId","args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteProjectV2Payload", + "description": "Autogenerated return type of DeleteProjectV2", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2WorkflowInput", + "description": "Autogenerated input type of DeleteProjectV2Workflow", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "workflowId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteProjectV2WorkflowPayload", + "description": "Autogenerated return type of DeleteProjectV2Workflow", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletedWorkflowId","args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeletePullRequestReviewCommentInput", + "description": "Autogenerated input type of DeletePullRequestReviewComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeletePullRequestReviewCommentPayload", + "description": "Autogenerated return type of DeletePullRequestReviewComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReview","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReviewComment","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeletePullRequestReviewInput", + "description": "Autogenerated input type of DeletePullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeletePullRequestReviewPayload", + "description": "Autogenerated return type of DeletePullRequestReview", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReview","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteRefInput", + "description": "Autogenerated input type of DeleteRef", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "refId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteRefPayload", + "description": "Autogenerated return type of DeleteRef", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteRepositoryRulesetInput", + "description": "Autogenerated input type of DeleteRepositoryRuleset", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryRulesetId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteRepositoryRulesetPayload", + "description": "Autogenerated return type of DeleteRepositoryRuleset", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamDiscussionCommentInput", + "description": "Autogenerated input type of DeleteTeamDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteTeamDiscussionCommentPayload", + "description": "Autogenerated return type of DeleteTeamDiscussionComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamDiscussionInput", + "description": "Autogenerated input type of DeleteTeamDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteTeamDiscussionPayload", + "description": "Autogenerated return type of DeleteTeamDiscussion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteUserListInput", + "description": "Autogenerated input type of DeleteUserList", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "listId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteUserListPayload", + "description": "Autogenerated return type of DeleteUserList", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteVerifiableDomainInput", + "description": "Autogenerated input type of DeleteVerifiableDomain", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeleteVerifiableDomainPayload", + "description": "Autogenerated return type of DeleteVerifiableDomain", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "UNION", + "name": "VerifiableDomainOwner", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DemilestonedEvent", + "description": "Represents a 'demilestoned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "milestoneTitle","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "MilestoneItem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DependabotUpdate", + "description": "A Dependabot Update for a dependency in a repository", + "fields": [ + { + "name": "error","args": [], + "type": { + "kind": "OBJECT", + "name": "DependabotUpdateError", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DependabotUpdateError", + "description": "An error produced from a Dependabot Update", + "fields": [ + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "errorType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DependencyGraphDependency", + "description": "A dependency manifest entry", + "fields": [ + { + "name": "hasDependencies","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "packageLabel","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "`packageLabel` will be removed. Use normalized `packageName` field instead. Removal on 2022-10-01 UTC." + }, + { + "name": "packageManager","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "packageName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requirements","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DependencyGraphDependencyConnection", + "description": "The connection type for DependencyGraphDependency.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DependencyGraphDependencyEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DependencyGraphDependency", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DependencyGraphDependencyEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DependencyGraphDependency", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DependencyGraphEcosystem", + "description": "The possible ecosystems of a dependency graph package.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "RUBYGEMS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NPM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PIP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MAVEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NUGET","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMPOSER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ACTIONS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RUST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUB","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SWIFT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DependencyGraphManifest", + "description": "Dependency manifest for a repository", + "fields": [ + { + "name": "blobPath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dependencies","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DependencyGraphDependencyConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dependenciesCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "exceedsMaxSize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "filename","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parseable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DependencyGraphManifestConnection", + "description": "The connection type for DependencyGraphManifest.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DependencyGraphManifestEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DependencyGraphManifest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DependencyGraphManifestEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DependencyGraphManifest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeployKey", + "description": "A repository deploy key.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "key","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "readOnly","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "verified","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeployKeyConnection", + "description": "The connection type for DeployKey.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeployKeyEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeployKey", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeployKeyEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DeployKey", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeployedEvent", + "description": "Represents a 'deployed' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployment","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Deployment", + "description": "Represents triggered deployment instance.", + "fields": [ + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitOid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environment","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "latestEnvironment","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "latestStatus","args": [], + "type": { + "kind": "OBJECT", + "name": "DeploymentStatus", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "originalEnvironment","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "payload","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "ENUM", + "name": "DeploymentState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "statuses","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeploymentStatusConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "task","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentConnection", + "description": "The connection type for Deployment.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentEnvironmentChangedEvent", + "description": "Represents a 'deployment_environment_changed' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deploymentStatus","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentStatus", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DeploymentOrder", + "description": "Ordering options for deployment connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DeploymentOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DeploymentOrderField", + "description": "Properties by which deployment connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentProtectionRule", + "description": "A protection rule.", + "fields": [ + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "preventSelfReview","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentReviewerConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "timeout","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "type","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DeploymentProtectionRuleType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentProtectionRuleConnection", + "description": "The connection type for DeploymentProtectionRule.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentProtectionRuleEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentProtectionRule", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentProtectionRuleEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DeploymentProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DeploymentProtectionRuleType", + "description": "The possible protection rule types.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "REQUIRED_REVIEWERS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WAIT_TIMER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentRequest", + "description": "A request to deploy a workflow run to an environment.", + "fields": [ + { + "name": "currentUserCanApprove","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environment","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Environment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentReviewerConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "waitTimer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "waitTimerStartedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentRequestConnection", + "description": "The connection type for DeploymentRequest.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentRequestEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentRequestEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DeploymentRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentReview", + "description": "A deployment review.", + "fields": [ + { + "name": "comment","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnvironmentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DeploymentReviewState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentReviewConnection", + "description": "The connection type for DeploymentReview.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentReviewEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentReview", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentReviewEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DeploymentReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DeploymentReviewState", + "description": "The possible states for a deployment review.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "APPROVED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REJECTED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "DeploymentReviewer", + "description": "Users and teams.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "DeploymentReviewerConnection", + "description": "The connection type for DeploymentReviewer.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentReviewerEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "DeploymentReviewer", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentReviewerEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "DeploymentReviewer", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DeploymentState", + "description": "The possible states in which a deployment can be.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ABANDONED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ACTIVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DESTROYED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ERROR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILURE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INACTIVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUCCESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "QUEUED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN_PROGRESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WAITING","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentStatus", + "description": "Describes the status of a given deployment attempt.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployment","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environment","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environmentUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "logUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DeploymentStatusState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentStatusConnection", + "description": "The connection type for DeploymentStatus.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentStatusEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentStatus", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DeploymentStatusEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DeploymentStatus", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DeploymentStatusState", + "description": "The possible states for a deployment status.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUCCESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILURE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INACTIVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ERROR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "QUEUED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN_PROGRESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WAITING","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DequeuePullRequestInput", + "description": "Autogenerated input type of DequeuePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DequeuePullRequestPayload", + "description": "Autogenerated return type of DequeuePullRequest", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeQueueEntry","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueueEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DiffSide", + "description": "The possible sides of a diff.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LEFT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RIGHT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DisablePullRequestAutoMergeInput", + "description": "Autogenerated input type of DisablePullRequestAutoMerge", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DisablePullRequestAutoMergePayload", + "description": "Autogenerated return type of DisablePullRequestAutoMerge", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DisconnectedEvent", + "description": "Represents a 'disconnected' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCrossRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "source","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ReferencedSubject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ReferencedSubject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "description": "A discussion in a repository.", + "fields": [ + { + "name": "activeLockReason","args": [], + "type": { + "kind": "ENUM", + "name": "LockReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "answer","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "answerChosenAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "answerChosenBy","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "category","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCategory", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isAnswered","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labels","args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "LabelOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LabelConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "locked","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "poll","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionPoll", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stateReason","args": [], + "type": { + "kind": "ENUM", + "name": "DiscussionStateReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "upvoteCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanClose","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReopen","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSubscribe","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpvote","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasUpvoted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerSubscription","args": [], + "type": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Closable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Labelable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Lockable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Votable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionCategory", + "description": "A category for discussions in a repository.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "emoji","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "emojiHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isAnswerable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "slug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionCategoryConnection", + "description": "The connection type for DiscussionCategory.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCategoryEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCategory", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionCategoryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionCategory", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DiscussionCloseReason", + "description": "The possible reasons for closing a discussion.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "RESOLVED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OUTDATED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DUPLICATE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "description": "A comment on a discussion.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isAnswer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMinimized","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizedReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "replies","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "replyTo","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "upvoteCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMarkAsAnswer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMinimize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUnmarkAsAnswer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpvote","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasUpvoted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Minimizable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Votable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionCommentConnection", + "description": "The connection type for DiscussionComment.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCommentEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionConnection", + "description": "The connection type for Discussion.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DiscussionOrder", + "description": "Ways in which lists of discussions can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DiscussionOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DiscussionOrderField", + "description": "Properties by which discussion connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionPoll", + "description": "A poll for a discussion.", + "fields": [ + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "options","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "How to order the options for the discussion poll.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DiscussionPollOptionOrder", + "ofType": None + }, + "defaultValue": "{field: AUTHORED_ORDER, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscussionPollOptionConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "question","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalVoteCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanVote","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasVoted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionPollOption", + "description": "An option for a discussion poll.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "option","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "poll","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionPoll", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalVoteCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasVoted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionPollOptionConnection", + "description": "The connection type for DiscussionPollOption.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionPollOptionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionPollOption", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DiscussionPollOptionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionPollOption", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DiscussionPollOptionOrder", + "description": "Ordering options for discussion poll option connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DiscussionPollOptionOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DiscussionPollOptionOrderField", + "description": "Properties by which discussion poll option connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "AUTHORED_ORDER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VOTE_COUNT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DiscussionState", + "description": "The possible states of a discussion.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DiscussionStateReason", + "description": "The possible state reasons of a discussion.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "RESOLVED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OUTDATED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DUPLICATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REOPENED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DismissPullRequestReviewInput", + "description": "Autogenerated input type of DismissPullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "message","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DismissPullRequestReviewPayload", + "description": "Autogenerated return type of DismissPullRequestReview", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReview","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "DismissReason", + "description": "The possible reasons that a Dependabot alert was dismissed.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "FIX_STARTED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NO_BANDWIDTH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TOLERABLE_RISK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INACCURATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NOT_USED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DismissRepositoryVulnerabilityAlertInput", + "description": "Autogenerated input type of DismissRepositoryVulnerabilityAlert", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryVulnerabilityAlertId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "dismissReason","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DismissReason", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DismissRepositoryVulnerabilityAlertPayload", + "description": "Autogenerated return type of DismissRepositoryVulnerabilityAlert", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryVulnerabilityAlert","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlert", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "DraftIssue", + "description": "A draft issue within a project.", + "fields": [ + { + "name": "assignees","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2Items","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsV2","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DraftPullRequestReviewComment", + "description": "Specifies a review comment to be left with a Pull Request Review.", + "fields": None, + "inputFields": [ + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "position","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "DraftPullRequestReviewThread", + "description": "Specifies a review comment thread to be left with a Pull Request Review.", + "fields": None, + "inputFields": [ + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "line","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "side","type": { + "kind": "ENUM", + "name": "DiffSide", + "ofType": None + }, + "defaultValue": "RIGHT" + }, + { + "name": "startLine","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "startSide","type": { + "kind": "ENUM", + "name": "DiffSide", + "ofType": None + }, + "defaultValue": "RIGHT" + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnablePullRequestAutoMergeInput", + "description": "Autogenerated input type of EnablePullRequestAutoMerge", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "commitHeadline","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "commitBody","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "mergeMethod","type": { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "ofType": None + }, + "defaultValue": "MERGE" + }, + { + "name": "authorEmail","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "expectedHeadOid","type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnablePullRequestAutoMergePayload", + "description": "Autogenerated return type of EnablePullRequestAutoMerge", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnqueuePullRequestInput", + "description": "Autogenerated input type of EnqueuePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "jump","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "expectedHeadOid","type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnqueuePullRequestPayload", + "description": "Autogenerated return type of EnqueuePullRequest", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeQueueEntry","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueueEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Enterprise", + "description": "An account to manage multiple organizations with consolidated policy and billing.", + "fields": [ + { + "name": "announcement","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "announcementExpiresAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "announcementUserDismissible","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "billingEmail","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "billingInfo", + "args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseBillingInfo", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "descriptionHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "location","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "members","args": [ + { + "name": "organizationLogins", + "description": "Only return members within the organizations with these logins", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for members returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseMemberOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "role", + "description": "The role of the user in the enterprise organization or server.", + "type": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "deployment", + "description": "Only return members within the selected GitHub Enterprise deployment", + "type": { + "kind": "ENUM", + "name": "EnterpriseUserDeployment", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasTwoFactorEnabled", + "description": "Only return members with this two-factor authentication status. Does not include members who only have an account on a GitHub Enterprise Server instance.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseMemberConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizations","args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "viewerOrganizationRole", + "description": "The viewer's role in an organization.", + "type": { + "kind": "ENUM", + "name": "RoleInOrganization", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ownerInfo","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseOwnerInfo", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "slug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerIsAdmin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "websiteUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AnnouncementBanner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorEdge", + "description": "A User who is an administrator of an enterprise.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "role","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "description": "An invitation for a user to become an owner or billing manager of an enterprise.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitee","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "inviter","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "role","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitationConnection", + "description": "The connection type for EnterpriseAdministratorInvitation.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseAdministratorInvitationOrder", + "description": "Ordering options for enterprise administrator invitation connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseAdministratorInvitationOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseAdministratorInvitationOrderField", + "description": "Properties by which enterprise administrator invitation connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "description": "The possible administrator roles in an enterprise account.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OWNER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BILLING_MANAGER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", + "description": "The possible values for the enterprise allow private repository forking policy value.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ENTERPRISE_ORGANIZATIONS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SAME_ORGANIZATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SAME_ORGANIZATION_USER_ACCOUNTS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "USER_ACCOUNTS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EVERYWHERE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "description": "Metadata for an audit entry containing enterprise account information.", + "fields": [ + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposClearAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteToBusinessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeEnableAuditEntry", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "EnterpriseBillingInfo", + "description": "Enterprise billing information visible to enterprise billing managers and owners.", + "fields": [ + { + "name": "allLicensableUsersCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assetPacks","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bandwidthQuota","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bandwidthUsage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bandwidthUsagePercentage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "storageQuota","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "storageUsage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "storageUsagePercentage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalAvailableLicenses","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalLicenses","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseConnection", + "description": "The connection type for Enterprise.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseDefaultRepositoryPermissionSettingValue", + "description": "The possible values for the enterprise base repository permission setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NO_POLICY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WRITE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "READ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "description": "The possible values for an enabled/disabled enterprise setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ENABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NO_POLICY","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseEnabledSettingValue", + "description": "The possible values for an enabled/no policy enterprise setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ENABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NO_POLICY","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseFailedInvitationConnection", + "description": "The connection type for OrganizationInvitation.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseFailedInvitationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalUniqueUserCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseFailedInvitationEdge", + "description": "A failed invitation to be a member in an enterprise organization.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseIdentityProvider", + "description": "An identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", + "fields": [ + { + "name": "digestMethod","args": [], + "type": { + "kind": "ENUM", + "name": "SamlDigestAlgorithm", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "externalIdentities","args": [ + { + "name": "membersOnly", + "description": "Filter to external identities with valid org membership only", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "login", + "description": "Filter to external identities with the users login", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userName", + "description": "Filter to external identities with the users userName/NameID attribute", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ExternalIdentityConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "idpCertificate","args": [], + "type": { + "kind": "SCALAR", + "name": "X509Certificate", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issuer","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "recoveryCodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signatureMethod","args": [], + "type": { + "kind": "ENUM", + "name": "SamlSignatureAlgorithm", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ssoUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "EnterpriseMember", + "description": "An object that is a member of an enterprise.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "EnterpriseUserAccount", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "EnterpriseMemberConnection", + "description": "The connection type for EnterpriseMember.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseMemberEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "EnterpriseMember", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseMemberEdge", + "description": "A User who is a member of an enterprise through one or more organizations.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "EnterpriseMember", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseMemberOrder", + "description": "Ordering options for enterprise member connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseMemberOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseMemberOrderField", + "description": "Properties by which enterprise member connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LOGIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", + "description": "The possible values for the enterprise members can create repositories setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NO_POLICY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseMembersCanMakePurchasesSettingValue", + "description": "The possible values for the members can make purchases setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ENABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseMembershipType", + "description": "The possible values we have for filtering Platform::Objects::User#enterprises.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BILLING_MANAGER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ORG_MEMBERSHIP","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseOrder", + "description": "Ordering options for enterprises.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseOrderField", + "description": "Properties by which enterprise connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseOrganizationMembershipConnection", + "description": "The connection type for Organization.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseOrganizationMembershipEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseOrganizationMembershipEdge", + "description": "An enterprise organization that a user is a member of.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "role","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseOutsideCollaboratorConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseOutsideCollaboratorEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseOutsideCollaboratorEdge", + "description": "A User who is an outside collaborator of an enterprise through one or more organizations.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositories","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": "{field: NAME, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfoConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseOwnerInfo", + "description": "Enterprise information visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", + "fields": [ + { + "name": "admins","args": [ + { + "name": "organizationLogins", + "description": "Only return members within the organizations with these logins", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "role", + "description": "The role to filter by.", + "type": { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for administrators returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseMemberOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "hasTwoFactorEnabled", + "description": "Only return administrators with this two-factor authentication status.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "affiliatedUsersWithTwoFactorDisabled","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "affiliatedUsersWithTwoFactorDisabledExist","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "allowPrivateRepositoryForkingSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "allowPrivateRepositoryForkingSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "allowPrivateRepositoryForkingSettingPolicyValue","args": [], + "type": { + "kind": "ENUM", + "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "defaultRepositoryPermissionSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseDefaultRepositoryPermissionSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "defaultRepositoryPermissionSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The permission to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DefaultRepositoryPermissionField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "domains","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isVerified", + "description": "Filter whether or not the domain is verified.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "isApproved", + "description": "Filter whether or not the domain is approved.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "orderBy", + "description": "Ordering options for verifiable domains returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "VerifiableDomainOrder", + "ofType": None + }, + "defaultValue": "{field: DOMAIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "VerifiableDomainConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseServerInstallations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "connectedOnly", + "description": "Whether or not to only return installations discovered via GitHub Connect.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orderBy", + "description": "Ordering options for Enterprise Server installations returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerInstallationOrder", + "ofType": None + }, + "defaultValue": "{field: HOST_NAME, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "failedInvitations","args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseFailedInvitationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListEnabledSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListEnabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListEntries","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for IP allow list entries returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IpAllowListEntryOrder", + "ofType": None + }, + "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IpAllowListEntryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListForInstalledAppsEnabledSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListForInstalledAppsEnabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isUpdatingDefaultRepositoryPermission","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isUpdatingTwoFactorRequirement","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanChangeRepositoryVisibilitySetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanChangeRepositoryVisibilitySettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanCreateInternalRepositoriesSetting","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanCreatePrivateRepositoriesSetting","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanCreatePublicRepositoriesSetting","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanCreateRepositoriesSetting","args": [], + "type": { + "kind": "ENUM", + "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanCreateRepositoriesSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrganizationMembersCanCreateRepositoriesSettingValue", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanDeleteIssuesSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanDeleteIssuesSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanDeleteRepositoriesSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanDeleteRepositoriesSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanInviteCollaboratorsSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanInviteCollaboratorsSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanMakePurchasesSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseMembersCanMakePurchasesSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanUpdateProtectedBranchesSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanUpdateProtectedBranchesSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanViewDependencyInsightsSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanViewDependencyInsightsSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "notificationDeliveryRestrictionEnabledSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "NotificationRestrictionSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oidcProvider","args": [], + "type": { + "kind": "OBJECT", + "name": "OIDCProvider", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationProjectsSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationProjectsSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "outsideCollaborators","args": [ + { + "name": "login", + "description": "The login of one specific outside collaborator.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for outside collaborators returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseMemberOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "visibility", + "description": "Only return outside collaborators on repositories with this visibility.", + "type": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasTwoFactorEnabled", + "description": "Only return outside collaborators with this two-factor authentication status.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "organizationLogins", + "description": "Only return outside collaborators within the organizations with these logins", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseOutsideCollaboratorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pendingAdminInvitations","args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pending enterprise administrator invitations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseAdministratorInvitationOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + }, + { + "name": "role", + "description": "The role to filter by.", + "type": { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pendingCollaboratorInvitations","args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pending repository collaborator invitations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryInvitationOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryInvitationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pendingMemberInvitations","args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationLogins", + "description": "Only return invitations within the organizations with these logins", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "invitationSource", + "description": "Only return invitations matching this invitation source", + "type": { + "kind": "ENUM", + "name": "OrganizationInvitationSource", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterprisePendingMemberInvitationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryProjectsSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryProjectsSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "samlIdentityProvider","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseIdentityProvider", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "samlIdentityProviderSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IdentityProviderConfigurationState", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "supportEntitlements","args": [ + { + "name": "orderBy", + "description": "Ordering options for support entitlement users returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseMemberOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseMemberConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamDiscussionsSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamDiscussionsSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "twoFactorRequiredSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "twoFactorRequiredSettingOrganizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterprisePendingMemberInvitationConnection", + "description": "The connection type for OrganizationInvitation.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterprisePendingMemberInvitationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalUniqueUserCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterprisePendingMemberInvitationEdge", + "description": "An invitation to be a member in an enterprise organization.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfo", + "description": "A subset of repository information queryable from an enterprise.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPrivate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nameWithOwner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfoConnection", + "description": "The connection type for EnterpriseRepositoryInfo.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfoEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfoEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfo", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "description": "An Enterprise Server installation.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "customerName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hostName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isConnected","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userAccounts","args": [ + { + "name": "orderBy", + "description": "Ordering options for Enterprise Server user accounts returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userAccountsUploads","args": [ + { + "name": "orderBy", + "description": "Ordering options for Enterprise Server user accounts uploads returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountsUploadOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUploadConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationConnection", + "description": "The connection type for EnterpriseServerInstallation.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationMembershipConnection", + "description": "The connection type for EnterpriseServerInstallation.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationMembershipEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationMembershipEdge", + "description": "An Enterprise Server installation that a user is a member of.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "role","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerInstallationOrder", + "description": "Ordering options for Enterprise Server installation connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerInstallationOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseServerInstallationOrderField", + "description": "Properties by which Enterprise Server installation connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "HOST_NAME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CUSTOMER_NAME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccount", + "description": "A user account on an Enterprise Server installation.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "emails","args": [ + { + "name": "orderBy", + "description": "Ordering options for Enterprise Server user account emails returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountEmailOrder", + "ofType": None + }, + "defaultValue": "{field: EMAIL, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmailConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseServerInstallation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSiteAdmin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "profileName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "remoteCreatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "remoteUserId","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountConnection", + "description": "The connection type for EnterpriseServerUserAccount.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccount", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccount", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmail", + "description": "An email belonging to a user account on an Enterprise Server installation.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPrimary","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userAccount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccount", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmailConnection", + "description": "The connection type for EnterpriseServerUserAccountEmail.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmailEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmail", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmailEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmail", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountEmailOrder", + "description": "Ordering options for Enterprise Server user account email connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountEmailOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountEmailOrderField", + "description": "Properties by which Enterprise Server user account email connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "EMAIL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountOrder", + "description": "Ordering options for Enterprise Server user account connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountOrderField", + "description": "Properties by which Enterprise Server user account connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LOGIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REMOTE_CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUpload", + "description": "A user accounts upload from an Enterprise Server installation.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseServerInstallation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "syncState","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountsUploadSyncState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUploadConnection", + "description": "The connection type for EnterpriseServerUserAccountsUpload.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUploadEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUpload", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUploadEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUpload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountsUploadOrder", + "description": "Ordering options for Enterprise Server user accounts upload connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountsUploadOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountsUploadOrderField", + "description": "Properties by which Enterprise Server user accounts upload connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountsUploadSyncState", + "description": "Synchronization state of the Enterprise Server user accounts upload", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUCCESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILURE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseUserAccount", + "description": "An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.", + "fields": [ + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseInstallations","args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for installations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerInstallationOrder", + "ofType": None + }, + "defaultValue": "{field: HOST_NAME, direction: ASC}" + }, + { + "name": "role", + "description": "The role of the user in the installation.", + "type": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationMembershipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizations","args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for organizations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "role", + "description": "The role of the user in the enterprise organization.", + "type": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseOrganizationMembershipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "description": "The possible roles for enterprise membership.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MEMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OWNER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNAFFILIATED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnterpriseUserDeployment", + "description": "The possible GitHub Enterprise deployments where this user can exist.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CLOUD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SERVER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Environment", + "description": "An environment.", + "fields": [ + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "protectionRules","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentProtectionRuleConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnvironmentConnection", + "description": "The connection type for Environment.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnvironmentEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Environment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "EnvironmentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Environment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "EnvironmentOrderField", + "description": "Properties by which environments connections can be ordered", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "Environments", + "description": "Ordering options for environments", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnvironmentOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ExternalIdentity", + "description": "An external identity provisioned by SAML SSO or SCIM. If SAML is configured on the organization, the external identity is visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members. If SAML is configured on the enterprise, the external identity is visible to (1) enterprise owners, (2) enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", + "fields": [ + { + "name": "guid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationInvitation","args": [], + "type": { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "samlIdentity","args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalIdentitySamlAttributes", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "scimIdentity","args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalIdentityScimAttributes", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ExternalIdentityAttribute", + "description": "An attribute for the External Identity attributes collection", + "fields": [ + { + "name": "metadata","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "value","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ExternalIdentityConnection", + "description": "The connection type for ExternalIdentity.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ExternalIdentityEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ExternalIdentity", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ExternalIdentityEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalIdentity", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ExternalIdentitySamlAttributes", + "description": "SAML attributes for the External Identity", + "fields": [ + { + "name": "attributes","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ExternalIdentityAttribute", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "emails","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserEmailMetadata", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "familyName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "givenName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "groups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nameId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "username","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ExternalIdentityScimAttributes", + "description": "SCIM attributes for the External Identity", + "fields": [ + { + "name": "emails","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserEmailMetadata", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "familyName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "givenName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "groups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "username","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "FileAddition", + "description": "A command to add a file at the given path with the given contents as part of a commit. Any existing file at that that path will be replaced.", + "fields": None, + "inputFields": [ + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "contents","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Base64String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "FileChanges", + "fields": None, + "inputFields": [ + { + "name": "deletions","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileDeletion", + "ofType": None + } + } + }, + "defaultValue": "[]" + }, + { + "name": "additions","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileAddition", + "ofType": None + } + } + }, + "defaultValue": "[]" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "FileDeletion", + "description": "A command to delete the file at the given path as part of a commit.", + "fields": None, + "inputFields": [ + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "FileViewedState", + "description": "The possible viewed states of a file .", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DISMISSED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VIEWED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNVIEWED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "Represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "FollowOrganizationInput", + "description": "Autogenerated input type of FollowOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "FollowOrganizationPayload", + "description": "Autogenerated return type of FollowOrganization", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "FollowUserInput", + "description": "Autogenerated input type of FollowUser", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "FollowUserPayload", + "description": "Autogenerated return type of FollowUser", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "FollowerConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "FollowingConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "FundingLink", + "description": "A funding platform link for a repository.", + "fields": [ + { + "name": "platform","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "FundingPlatform", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "FundingPlatform", + "description": "The possible funding platforms for repository funding links.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "GITHUB","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PATREON","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OPEN_COLLECTIVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KO_FI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TIDELIFT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMUNITY_BRIDGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LIBERAPAY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ISSUEHUNT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LFX_CROWDFUNDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "POLAR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BUY_ME_A_COFFEE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CUSTOM","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GenericHovercardContext", + "description": "A generic hovercard context with a message and icon", + "fields": [ + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "octicon","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "HovercardContext", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Gist", + "description": "A Gist.", + "fields": [ + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GistCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "files","args": [ + { + "name": "limit", + "description": "The maximum number of files to return.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "10" + }, + { + "name": "oid", + "description": "The oid of the files to return", + "type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GistFile", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "forks","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for gists returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "GistOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GistConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isFork","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPublic","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pushedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stargazerCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stargazers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "StarOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StargazerConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasStarred","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Starrable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GistComment", + "description": "Represents a comment on an Gist.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "gist","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Gist", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMinimized","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizedReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMinimize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Minimizable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GistCommentConnection", + "description": "The connection type for GistComment.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GistCommentEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GistComment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GistCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "GistComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GistConnection", + "description": "The connection type for Gist.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GistEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Gist", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GistEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Gist", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GistFile", + "description": "A file in a gist.", + "fields": [ + { + "name": "encodedName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "encoding","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "extension","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isImage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isTruncated","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "language","args": [], + "type": { + "kind": "OBJECT", + "name": "Language", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "size","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "text","args": [ + { + "name": "truncate", + "description": "Optionally truncate the returned file to this length.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "GistOrder", + "description": "Ordering options for gist connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "GistOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "GistOrderField", + "description": "Properties by which gist connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUSHED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "GistPrivacy", + "description": "The privacy of a Gist", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SECRET","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GitActor", + "description": "Represents an actor in a Git commit (ie. an author or committer).", + "fields": [ + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "date","args": [], + "type": { + "kind": "SCALAR", + "name": "GitTimestamp", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GitActorConnection", + "description": "The connection type for GitActor.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GitActorEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GitActor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GitActorEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "GitActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GitHubMetadata", + "description": "Represents information about the GitHub instance.", + "fields": [ + { + "name": "gitHubServicesSha","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "gitIpAddresses","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "githubEnterpriseImporterIpAddresses","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hookIpAddresses","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "importerIpAddresses","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPasswordAuthenticationVerifiable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pagesIpAddresses","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "GitObject", + "description": "Represents a Git object.", + "fields": [ + { + "name": "abbreviatedOid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Blob", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Tag", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Tree", + "ofType": None + } + ] + }, + { + "kind": "SCALAR", + "name": "GitObjectID", + "description": "A Git object ID.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "GitRefname", + "description": "A fully qualified reference name (e.g. `refs/heads/master`).", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "GitSSHRemote", + "description": "Git SSH string", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "GitSignature", + "description": "Information about a signature (GPG or S/MIME) on a Commit or Tag.", + "fields": [ + { + "name": "email","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isValid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "payload","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signature","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "GitSignatureState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "wasSignedByGitHub","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GpgSignature", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SmimeSignature", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SshSignature", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnknownSignature", + "ofType": None + } + ] + }, + { + "kind": "ENUM", + "name": "GitSignatureState", + "description": "The state of a Git signature.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "VALID","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INVALID","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MALFORMED_SIG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNKNOWN_KEY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BAD_EMAIL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNVERIFIED_EMAIL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NO_USER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNKNOWN_SIG_TYPE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNSIGNED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GPGVERIFY_UNAVAILABLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GPGVERIFY_ERROR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NOT_SIGNING_KEY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EXPIRED_KEY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OCSP_PENDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OCSP_ERROR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BAD_CERT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OCSP_REVOKED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "GitTimestamp", + "description": "An ISO-8601 encoded date string. Unlike the DateTime type, GitTimestamp is not converted in UTC.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GpgSignature", + "description": "Represents a GPG signature on a Commit or Tag.", + "fields": [ + { + "name": "email","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isValid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "keyId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "payload","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signature","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "GitSignatureState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "wasSignedByGitHub","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GitSignature", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "GrantEnterpriseOrganizationsMigratorRoleInput", + "description": "Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "login","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GrantEnterpriseOrganizationsMigratorRolePayload", + "description": "Autogenerated return type of GrantEnterpriseOrganizationsMigratorRole", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "GrantMigratorRoleInput", + "description": "Autogenerated input type of GrantMigratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "actor","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "actorType","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ActorType", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "GrantMigratorRolePayload", + "description": "Autogenerated return type of GrantMigratorRole", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "success","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "HTML", + "description": "A string containing HTML code.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "HeadRefDeletedEvent", + "description": "Represents a 'head_ref_deleted' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headRef","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headRefName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "HeadRefForcePushedEvent", + "description": "Represents a 'head_ref_force_pushed' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "afterCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "beforeCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "HeadRefRestoredEvent", + "description": "Represents a 'head_ref_restored' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Hovercard", + "description": "Detail needed to display a hovercard for a user", + "fields": [ + { + "name": "contexts","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "HovercardContext", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "HovercardContext", + "description": "An individual line of a hovercard", + "fields": [ + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "octicon","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GenericHovercardContext", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrganizationTeamsHovercardContext", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrganizationsHovercardContext", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewStatusHovercardContext", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ViewerHovercardContext", + "ofType": None + } + ] + }, + { + "kind": "SCALAR", + "name": "ID", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IdentityProviderConfigurationState", + "description": "The possible states in which authentication can be configured with an identity provider.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ENFORCED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONFIGURED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNCONFIGURED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ImportProjectInput", + "description": "Autogenerated input type of ImportProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerName","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "public","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "columnImports","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectColumnImport", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ImportProjectPayload", + "description": "Autogenerated return type of ImportProject", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "InviteEnterpriseAdminInput", + "description": "Autogenerated input type of InviteEnterpriseAdmin", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "invitee","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "email","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "role","type": { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "InviteEnterpriseAdminPayload", + "description": "Autogenerated return type of InviteEnterpriseAdmin", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitation","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IpAllowListEnabledSettingValue", + "description": "The possible values for the IP allow list enabled setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ENABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IpAllowListEntry", + "description": "An IP address or range of addresses that is allowed to access an owner's resources.", + "fields": [ + { + "name": "allowListValue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isActive","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "IpAllowListOwner", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IpAllowListEntryConnection", + "description": "The connection type for IpAllowListEntry.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IpAllowListEntryEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IpAllowListEntry", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IpAllowListEntryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "IpAllowListEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "IpAllowListEntryOrder", + "description": "Ordering options for IP allow list entry connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListEntryOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IpAllowListEntryOrderField", + "description": "Properties by which IP allow list entry connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ALLOW_LIST_VALUE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IpAllowListForInstalledAppsEnabledSettingValue", + "description": "The possible values for the IP allow list configuration for installed GitHub Apps setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ENABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "IpAllowListOwner", + "description": "Types that can own an IP allow list.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "Issue", + "description": "An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.", + "fields": [ + { + "name": "activeLockReason","args": [], + "type": { + "kind": "ENUM", + "name": "LockReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assignees","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comments","args": [ + { + "name": "orderBy", + "description": "Ordering options for issue comments returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCommentOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDatabaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hovercard","args": [ + { + "name": "includeNotificationContexts", + "description": "Whether or not to include notification contexts", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Hovercard", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPinned","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isReadByViewer","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labels","args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "LabelOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LabelConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "linkedBranches","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "LinkedBranchConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "locked","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "milestone","args": [], + "type": { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "participants","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectCards","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "archivedStates", + "description": "A list of archived states to filter the cards by", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectCardArchivedState", + "ofType": None + } + }, + "defaultValue": "[ARCHIVED, NOT_ARCHIVED]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCardConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectItems","args": [ + { + "name": "includeArchived", + "description": "Include archived items.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsV2","args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "ofType": None + }, + "defaultValue": "{field: NUMBER, direction: DESC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stateReason","args": [], + "type": { + "kind": "ENUM", + "name": "IssueStateReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "timeline","args": [ + { + "name": "since", + "description": "Allows filtering timeline events by a `since` timestamp.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueTimelineConnection", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "`timeline` will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC." + }, + { + "name": "timelineItems","args": [ + { + "name": "since", + "description": "Filter timeline items by a `since` timestamp.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "skip", + "description": "Skips the first _n_ elements in the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "itemTypes", + "description": "Filter timeline items by type.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueTimelineItemsItemType", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueTimelineItemsConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "titleHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "trackedInIssues","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "trackedIssues","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "trackedIssuesCount","args": [ + { + "name": "states", + "description": "Limit the count to tracked issues with the specified states.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TrackedIssueStates", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanClose","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReopen","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSubscribe","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerSubscription","args": [], + "type": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerThreadSubscriptionFormAction","args": [], + "type": { + "kind": "ENUM", + "name": "ThreadSubscriptionFormAction", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerThreadSubscriptionStatus","args": [], + "type": { + "kind": "ENUM", + "name": "ThreadSubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Assignable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Closable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Labelable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Lockable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Owner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "SubscribableThread", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IssueClosedStateReason", + "description": "The possible state reasons of a closed issue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "COMPLETED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NOT_PLANNED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "description": "Represents a comment on an Issue.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDatabaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMinimized","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizedReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMinimize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Minimizable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueCommentConnection", + "description": "The connection type for IssueComment.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueCommentEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueCommentOrder", + "description": "Ways in which lists of issue comments can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueCommentOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IssueCommentOrderField", + "description": "Properties by which issue comment connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueConnection", + "description": "The connection type for Issue.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueContributionsByRepository", + "description": "This aggregates issues opened by a user within one repository.", + "fields": [ + { + "name": "contributions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "ofType": None + }, + "defaultValue": "{direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIssueContributionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueFilters", + "description": "Ways in which to filter lists of issues.", + "fields": None, + "inputFields": [ + { + "name": "assignee","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "createdBy","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labels","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "mentioned","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "milestone","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "milestoneNumber","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "since","type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "states","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "viewerSubscribed","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "IssueOrPullRequest", + "description": "Used for return value of Repository.issueOrPullRequest.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "description": "Ways in which lists of issues can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IssueOrderField", + "description": "Properties by which issue connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMENTS","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IssueState", + "description": "The possible states of an issue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IssueStateReason", + "description": "The possible state reasons of an issue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "REOPENED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NOT_PLANNED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMPLETED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueTemplate", + "description": "A repository issue template.", + "fields": [ + { + "name": "about","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assignees","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "filename","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labels","args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "LabelOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LabelConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueTimelineConnection", + "description": "The connection type for IssueTimelineItem.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueTimelineItemEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "IssueTimelineItem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "IssueTimelineItem", + "description": "An item in an issue timeline", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AssignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ClosedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CrossReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DemilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RenamedTitleEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReopenedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TransferredEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnassignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnsubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UserBlockedEvent", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "IssueTimelineItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "IssueTimelineItem", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "IssueTimelineItems", + "description": "An item in an issue timeline", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddedToProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AssignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ClosedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommentDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConnectedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertedNoteToIssueEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertedToDiscussionEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CrossReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DemilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DisconnectedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MarkedAsDuplicateEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MentionedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MovedColumnsInProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PinnedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RemovedFromProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RenamedTitleEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReopenedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TransferredEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnassignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnmarkedAsDuplicateEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnpinnedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnsubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UserBlockedEvent", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "IssueTimelineItemsConnection", + "description": "The connection type for IssueTimelineItems.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueTimelineItemsEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "filteredCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "IssueTimelineItems", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "IssueTimelineItemsEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "IssueTimelineItems", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "IssueTimelineItemsItemType", + "description": "The possible item types found in a timeline.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ISSUE_COMMENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CROSS_REFERENCED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADDED_TO_PROJECT_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ASSIGNED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMENT_DELETED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONNECTED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONVERTED_NOTE_TO_ISSUE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONVERTED_TO_DISCUSSION_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DEMILESTONED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISCONNECTED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LABELED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LOCKED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MARKED_AS_DUPLICATE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MENTIONED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MILESTONED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MOVED_COLUMNS_IN_PROJECT_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PINNED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REFERENCED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REMOVED_FROM_PROJECT_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RENAMED_TITLE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REOPENED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIBED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TRANSFERRED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNASSIGNED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNLABELED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNLOCKED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "USER_BLOCKED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNMARKED_AS_DUPLICATE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNPINNED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNSUBSCRIBED_EVENT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "JoinedGitHubContribution", + "description": "Represents a user signing up for a GitHub account.", + "fields": [ + { + "name": "isRestricted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "occurredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Contribution", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Label", + "description": "A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.", + "fields": [ + { + "name": "color","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDefault","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issues","args": [ + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the issues by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "filterBy", + "description": "Filtering options for issues returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilters", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequests","args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LabelConnection", + "description": "The connection type for Label.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "LabelEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Label", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LabelEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Label", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "LabelOrder", + "description": "Ways in which lists of labels can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "LabelOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "LabelOrderField", + "description": "Properties by which label connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Labelable", + "description": "An object that can have labels assigned to it.", + "fields": [ + { + "name": "labels","args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "LabelOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LabelConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "LabeledEvent", + "description": "Represents a 'labeled' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "label","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Label", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labelable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Labelable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Language", + "description": "Represents a given language found in repositories.", + "fields": [ + { + "name": "color","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LanguageConnection", + "description": "A list of languages associated with the parent.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "LanguageEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Language", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalSize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LanguageEdge", + "description": "Represents the language of a repository.", + "fields": [ + { + "name": "cursor", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Language", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "size","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "LanguageOrder", + "description": "Ordering options for language connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "LanguageOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "LanguageOrderField", + "description": "Properties by which language connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "SIZE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "License", + "description": "A repository's open source license", + "fields": [ + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "conditions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "LicenseRule", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "featured","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hidden","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "implementation","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "key","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "limitations","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "LicenseRule", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nickname","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permissions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "LicenseRule", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pseudoLicense","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "spdxId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LicenseRule", + "description": "Describes a License's conditions, permissions, and limitations", + "fields": [ + { + "name": "description","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "key","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "label","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "LinkProjectV2ToRepositoryInput", + "description": "Autogenerated input type of LinkProjectV2ToRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LinkProjectV2ToRepositoryPayload", + "description": "Autogenerated return type of LinkProjectV2ToRepository", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "LinkProjectV2ToTeamInput", + "description": "Autogenerated input type of LinkProjectV2ToTeam", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "teamId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LinkProjectV2ToTeamPayload", + "description": "Autogenerated return type of LinkProjectV2ToTeam", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "LinkRepositoryToProjectInput", + "description": "Autogenerated input type of LinkRepositoryToProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LinkRepositoryToProjectPayload", + "description": "Autogenerated return type of LinkRepositoryToProject", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LinkedBranch", + "description": "A branch linked to an issue.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LinkedBranchConnection", + "description": "A list of branches linked to an issue.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "LinkedBranchEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "LinkedBranch", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LinkedBranchEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "LinkedBranch", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "LockLockableInput", + "description": "Autogenerated input type of LockLockable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "lockableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "lockReason","type": { + "kind": "ENUM", + "name": "LockReason", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "LockLockablePayload", + "description": "Autogenerated return type of LockLockable", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockedRecord","args": [], + "type": { + "kind": "INTERFACE", + "name": "Lockable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "LockReason", + "description": "The possible reasons that an issue or pull request was locked.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OFF_TOPIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TOO_HEATED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RESOLVED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SPAM","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Lockable", + "description": "An object that can be locked.", + "fields": [ + { + "name": "activeLockReason","args": [], + "type": { + "kind": "ENUM", + "name": "LockReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "locked","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "LockedEvent", + "description": "Represents a 'locked' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockReason","args": [], + "type": { + "kind": "ENUM", + "name": "LockReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Lockable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Mannequin", + "description": "A placeholder user for attribution of imported data on GitHub.", + "fields": [ + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "claimant","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MannequinConnection", + "description": "A list of mannequins.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MannequinEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MannequinEdge", + "description": "Represents a mannequin.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MannequinOrder", + "description": "Ordering options for mannequins.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MannequinOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MannequinOrderField", + "description": "Properties by which mannequins can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LOGIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkDiscussionCommentAsAnswerInput", + "description": "Autogenerated input type of MarkDiscussionCommentAsAnswer", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarkDiscussionCommentAsAnswerPayload", + "description": "Autogenerated return type of MarkDiscussionCommentAsAnswer", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkFileAsViewedInput", + "description": "Autogenerated input type of MarkFileAsViewed", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarkFileAsViewedPayload", + "description": "Autogenerated return type of MarkFileAsViewed", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkNotificationAsDoneInput", + "description": "Autogenerated input type of MarkNotificationAsDone", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarkNotificationAsDonePayload", + "description": "Autogenerated return type of MarkNotificationAsDone", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "success","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkProjectV2AsTemplateInput", + "description": "Autogenerated input type of MarkProjectV2AsTemplate", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarkProjectV2AsTemplatePayload", + "description": "Autogenerated return type of MarkProjectV2AsTemplate", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkPullRequestReadyForReviewInput", + "description": "Autogenerated input type of MarkPullRequestReadyForReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarkPullRequestReadyForReviewPayload", + "description": "Autogenerated return type of MarkPullRequestReadyForReview", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarkedAsDuplicateEvent", + "description": "Represents a 'marked_as_duplicate' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "canonical","args": [], + "type": { + "kind": "UNION", + "name": "IssueOrPullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "duplicate","args": [], + "type": { + "kind": "UNION", + "name": "IssueOrPullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCrossRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarketplaceCategory", + "description": "A public description of a Marketplace category.", + "fields": [ + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "howItWorks","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "primaryListingCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "secondaryListingCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "slug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarketplaceListing", + "description": "A listing in the GitHub integration marketplace.", + "fields": [ + { + "name": "app","args": [], + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "companyUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "configurationResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "configurationUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "documentationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "extendedDescription","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "extendedDescriptionHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDescription","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDescriptionHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasPublishedFreeTrialPlans","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasTermsOfService","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasVerifiedOwner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "howItWorks","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "howItWorksHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "installationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "installedForViewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isArchived","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDraft","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPaid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPublic","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isRejected","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isUnverified","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isUnverifiedPending","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isVerificationPendingFromDraft","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isVerificationPendingFromUnverified","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isVerified","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "logoBackgroundColor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "logoUrl","args": [ + { + "name": "size", + "description": "The size in pixels of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "400" + } + ], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "normalizedShortDescription","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pricingUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "primaryCategory","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MarketplaceCategory", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "privacyPolicyUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "screenshotUrls","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "secondaryCategory","args": [], + "type": { + "kind": "OBJECT", + "name": "MarketplaceCategory", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "shortDescription","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "slug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "statusUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "supportEmail","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "supportUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "termsOfServiceUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanAddPlans","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanApprove","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelist","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanEditCategories","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanEditPlans","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanRedraft","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanRequestApproval","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasPurchased","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasPurchasedForAllOrganizations","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerIsListingAdmin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarketplaceListingConnection", + "description": "Look up Marketplace Listings", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MarketplaceListingEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MarketplaceListing", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MarketplaceListingEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "MarketplaceListing", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MemberFeatureRequestNotification", + "description": "Represents a member feature request notification", + "fields": [ + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "MemberStatusable", + "description": "Entities that have members who can set status messages.", + "fields": [ + { + "name": "memberStatuses","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for user statuses returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserStatusOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserStatusConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposClearAuditEntry", + "description": "Audit log entry for a members_can_delete_repos.clear event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposDisableAuditEntry", + "description": "Audit log entry for a members_can_delete_repos.disable event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposEnableAuditEntry", + "description": "Audit log entry for a members_can_delete_repos.enable event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MentionedEvent", + "description": "Represents a 'mentioned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MergeBranchInput", + "description": "Autogenerated input type of MergeBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "base","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "head","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "commitMessage","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "authorEmail","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MergeBranchPayload", + "description": "Autogenerated return type of MergeBranch", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MergeCommitMessage", + "description": "The possible default commit messages for merges.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PR_TITLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PR_BODY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BLANK","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MergeCommitTitle", + "description": "The possible default commit titles for merges.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PR_TITLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MERGE_MESSAGE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MergePullRequestInput", + "description": "Autogenerated input type of MergePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "commitHeadline","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "commitBody","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "expectedHeadOid","type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "mergeMethod","type": { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "ofType": None + }, + "defaultValue": "MERGE" + }, + { + "name": "authorEmail","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MergePullRequestPayload", + "description": "Autogenerated return type of MergePullRequest", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MergeQueue", + "description": "The queue of pull request entries to be merged into a protected branch in a repository.", + "fields": [ + { + "name": "configuration","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueueConfiguration", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "entries","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MergeQueueEntryConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nextEntryEstimatedTimeToMerge","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MergeQueueConfiguration", + "description": "Configuration for a MergeQueue", + "fields": [ + { + "name": "checkResponseTimeout","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "maximumEntriesToBuild","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "maximumEntriesToMerge","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeMethod","args": [], + "type": { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergingStrategy","args": [], + "type": { + "kind": "ENUM", + "name": "MergeQueueMergingStrategy", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimumEntriesToMerge","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimumEntriesToMergeWaitTime","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MergeQueueEntry", + "description": "Entries in a MergeQueue", + "fields": [ + { + "name": "baseCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enqueuedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enqueuer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "estimatedTimeToMerge","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "jump","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeQueue","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "position","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "solo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MergeQueueEntryState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MergeQueueEntryConnection", + "description": "The connection type for MergeQueueEntry.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MergeQueueEntryEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MergeQueueEntry", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MergeQueueEntryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueueEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MergeQueueEntryState", + "description": "The possible states for a merge queue entry.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "QUEUED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AWAITING_CHECKS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MERGEABLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNMERGEABLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LOCKED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MergeQueueMergingStrategy", + "description": "The possible merging strategies for a merge queue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ALLGREEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HEADGREEN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MergeStateStatus", + "description": "Detailed status information about a pull request merge.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DIRTY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNKNOWN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BLOCKED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BEHIND","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DRAFT","isDeprecated": True, + "deprecationReason": "DRAFT state will be removed from this enum and `isDraft` should be used instead Use PullRequest.isDraft instead. Removal on 2021-01-01 UTC." + }, + { + "name": "UNSTABLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HAS_HOOKS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLEAN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MergeableState", + "description": "Whether or not a PullRequest can be merged.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MERGEABLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONFLICTING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNKNOWN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MergedEvent", + "description": "Represents a 'merged' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeRef","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeRefName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Migration", + "description": "Represents a GitHub Enterprise Importer (GEI) migration.", + "fields": [ + { + "name": "continueOnError","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "failureReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "migrationLogUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "migrationSource","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MigrationSource", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sourceUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MigrationState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "warningsCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "RepositoryMigration", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "MigrationSource", + "description": "A GitHub Enterprise Importer (GEI) migration source.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "type","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MigrationSourceType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MigrationSourceType", + "description": "Represents the different GitHub Enterprise Importer (GEI) migration sources.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "AZURE_DEVOPS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BITBUCKET_SERVER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GITHUB_ARCHIVE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MigrationState", + "description": "The GitHub Enterprise Importer (GEI) migration state.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NOT_STARTED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "QUEUED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN_PROGRESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUCCEEDED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING_VALIDATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILED_VALIDATION","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Milestone", + "description": "Represents a Milestone object on a given repository.", + "fields": [ + { + "name": "closed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dueOn","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issues","args": [ + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the issues by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "filterBy", + "description": "Filtering options for issues returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilters", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "progressPercentage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequests","args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MilestoneState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanClose","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReopen","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Closable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MilestoneConnection", + "description": "The connection type for Milestone.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MilestoneEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MilestoneEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "MilestoneItem", + "description": "Types that can be inside a Milestone.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "MilestoneOrder", + "description": "Ordering options for milestone connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MilestoneOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MilestoneOrderField", + "description": "Properties by which milestone connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DUE_DATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NUMBER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "MilestoneState", + "description": "The possible states of a milestone.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MilestonedEvent", + "description": "Represents a 'milestoned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "milestoneTitle","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "MilestoneItem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Minimizable", + "description": "Entities that can be minimized.", + "fields": [ + { + "name": "isMinimized","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizedReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMinimize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "GistComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "MinimizeCommentInput", + "description": "Autogenerated input type of MinimizeComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "subjectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "classifier","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ReportedContentClassifiers", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MinimizeCommentPayload", + "description": "Autogenerated return type of MinimizeComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizedComment","args": [], + "type": { + "kind": "INTERFACE", + "name": "Minimizable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MoveProjectCardInput", + "description": "Autogenerated input type of MoveProjectCard", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "cardId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "columnId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "afterCardId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MoveProjectCardPayload", + "description": "Autogenerated return type of MoveProjectCard", + "fields": [ + { + "name": "cardEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectCardEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "MoveProjectColumnInput", + "description": "Autogenerated input type of MoveProjectColumn", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "columnId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "afterColumnId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MoveProjectColumnPayload", + "description": "Autogenerated return type of MoveProjectColumn", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "columnEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectColumnEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "MovedColumnsInProjectEvent", + "description": "Represents a 'moved_columns_in_project' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "previousProjectColumnName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectCard","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectCard", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectColumnName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": "The root query for implementing GraphQL mutations.", + "fields": [ + { + "name": "abortQueuedMigrations","args": [ + { + "name": "input", + "description": "Parameters for AbortQueuedMigrations", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AbortQueuedMigrationsInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AbortQueuedMigrationsPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "abortRepositoryMigration","args": [ + { + "name": "input", + "description": "Parameters for AbortRepositoryMigration", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AbortRepositoryMigrationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AbortRepositoryMigrationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "acceptEnterpriseAdministratorInvitation","args": [ + { + "name": "input", + "description": "Parameters for AcceptEnterpriseAdministratorInvitation", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AcceptEnterpriseAdministratorInvitationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AcceptEnterpriseAdministratorInvitationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "acceptTopicSuggestion","args": [ + { + "name": "input", + "description": "Parameters for AcceptTopicSuggestion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AcceptTopicSuggestionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AcceptTopicSuggestionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addAssigneesToAssignable","args": [ + { + "name": "input", + "description": "Parameters for AddAssigneesToAssignable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddAssigneesToAssignableInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddAssigneesToAssignablePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addComment","args": [ + { + "name": "input", + "description": "Parameters for AddComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addDiscussionComment","args": [ + { + "name": "input", + "description": "Parameters for AddDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddDiscussionCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddDiscussionCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addDiscussionPollVote","args": [ + { + "name": "input", + "description": "Parameters for AddDiscussionPollVote", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddDiscussionPollVoteInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddDiscussionPollVotePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addEnterpriseOrganizationMember","args": [ + { + "name": "input", + "description": "Parameters for AddEnterpriseOrganizationMember", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddEnterpriseOrganizationMemberInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddEnterpriseOrganizationMemberPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addEnterpriseSupportEntitlement","args": [ + { + "name": "input", + "description": "Parameters for AddEnterpriseSupportEntitlement", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddEnterpriseSupportEntitlementInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddEnterpriseSupportEntitlementPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addLabelsToLabelable","args": [ + { + "name": "input", + "description": "Parameters for AddLabelsToLabelable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddLabelsToLabelableInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddLabelsToLabelablePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addProjectCard","args": [ + { + "name": "input", + "description": "Parameters for AddProjectCard", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectCardInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddProjectCardPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addProjectColumn","args": [ + { + "name": "input", + "description": "Parameters for AddProjectColumn", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectColumnInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddProjectColumnPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addProjectV2DraftIssue","args": [ + { + "name": "input", + "description": "Parameters for AddProjectV2DraftIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectV2DraftIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddProjectV2DraftIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addProjectV2ItemById","args": [ + { + "name": "input", + "description": "Parameters for AddProjectV2ItemById", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectV2ItemByIdInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddProjectV2ItemByIdPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addPullRequestReview","args": [ + { + "name": "input", + "description": "Parameters for AddPullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddPullRequestReviewPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addPullRequestReviewComment","args": [ + { + "name": "input", + "description": "Parameters for AddPullRequestReviewComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddPullRequestReviewCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addPullRequestReviewThread","args": [ + { + "name": "input", + "description": "Parameters for AddPullRequestReviewThread", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewThreadInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddPullRequestReviewThreadPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addPullRequestReviewThreadReply","args": [ + { + "name": "input", + "description": "Parameters for AddPullRequestReviewThreadReply", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewThreadReplyInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddPullRequestReviewThreadReplyPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addReaction","args": [ + { + "name": "input", + "description": "Parameters for AddReaction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddReactionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddReactionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addStar","args": [ + { + "name": "input", + "description": "Parameters for AddStar", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddStarInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddStarPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addUpvote","args": [ + { + "name": "input", + "description": "Parameters for AddUpvote", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddUpvoteInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddUpvotePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "addVerifiableDomain","args": [ + { + "name": "input", + "description": "Parameters for AddVerifiableDomain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddVerifiableDomainInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "AddVerifiableDomainPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "approveVerifiableDomain","args": [ + { + "name": "input", + "description": "Parameters for ApproveVerifiableDomain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ApproveVerifiableDomainInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ApproveVerifiableDomainPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "archiveProjectV2Item","args": [ + { + "name": "input", + "description": "Parameters for ArchiveProjectV2Item", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ArchiveProjectV2ItemInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ArchiveProjectV2ItemPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "archiveRepository","args": [ + { + "name": "input", + "description": "Parameters for ArchiveRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ArchiveRepositoryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ArchiveRepositoryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "cancelEnterpriseAdminInvitation","args": [ + { + "name": "input", + "description": "Parameters for CancelEnterpriseAdminInvitation", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelEnterpriseAdminInvitationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CancelEnterpriseAdminInvitationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "cancelSponsorship","args": [ + { + "name": "input", + "description": "Parameters for CancelSponsorship", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelSponsorshipInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CancelSponsorshipPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "changeUserStatus","args": [ + { + "name": "input", + "description": "Parameters for ChangeUserStatus", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeUserStatusInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ChangeUserStatusPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clearLabelsFromLabelable","args": [ + { + "name": "input", + "description": "Parameters for ClearLabelsFromLabelable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ClearLabelsFromLabelableInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ClearLabelsFromLabelablePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clearProjectV2ItemFieldValue","args": [ + { + "name": "input", + "description": "Parameters for ClearProjectV2ItemFieldValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ClearProjectV2ItemFieldValueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ClearProjectV2ItemFieldValuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "cloneProject","args": [ + { + "name": "input", + "description": "Parameters for CloneProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CloneProjectInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CloneProjectPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "cloneTemplateRepository","args": [ + { + "name": "input", + "description": "Parameters for CloneTemplateRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CloneTemplateRepositoryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CloneTemplateRepositoryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closeDiscussion","args": [ + { + "name": "input", + "description": "Parameters for CloseDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CloseDiscussionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CloseDiscussionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closeIssue","args": [ + { + "name": "input", + "description": "Parameters for CloseIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CloseIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CloseIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closePullRequest","args": [ + { + "name": "input", + "description": "Parameters for ClosePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ClosePullRequestInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ClosePullRequestPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "convertProjectCardNoteToIssue","args": [ + { + "name": "input", + "description": "Parameters for ConvertProjectCardNoteToIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConvertProjectCardNoteToIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ConvertProjectCardNoteToIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "convertPullRequestToDraft","args": [ + { + "name": "input", + "description": "Parameters for ConvertPullRequestToDraft", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConvertPullRequestToDraftInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ConvertPullRequestToDraftPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "copyProjectV2","args": [ + { + "name": "input", + "description": "Parameters for CopyProjectV2", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CopyProjectV2Input", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CopyProjectV2Payload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createAttributionInvitation","args": [ + { + "name": "input", + "description": "Parameters for CreateAttributionInvitation", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateAttributionInvitationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateAttributionInvitationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createBranchProtectionRule","args": [ + { + "name": "input", + "description": "Parameters for CreateBranchProtectionRule", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateBranchProtectionRuleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateBranchProtectionRulePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createCheckRun","args": [ + { + "name": "input", + "description": "Parameters for CreateCheckRun", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCheckRunInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateCheckRunPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createCheckSuite","args": [ + { + "name": "input", + "description": "Parameters for CreateCheckSuite", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCheckSuiteInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateCheckSuitePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createCommitOnBranch","args": [ + { + "name": "input", + "description": "Parameters for CreateCommitOnBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCommitOnBranchInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateCommitOnBranchPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createDeploymentStatus","args": [ + { + "name": "input", + "description": "Parameters for CreateDeploymentStatus", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateDeploymentStatusInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateDeploymentStatusPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createDiscussion","args": [ + { + "name": "input", + "description": "Parameters for CreateDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateDiscussionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateDiscussionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createEnterpriseOrganization","args": [ + { + "name": "input", + "description": "Parameters for CreateEnterpriseOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateEnterpriseOrganizationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateEnterpriseOrganizationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createEnvironment","args": [ + { + "name": "input", + "description": "Parameters for CreateEnvironment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateEnvironmentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateEnvironmentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createIpAllowListEntry","args": [ + { + "name": "input", + "description": "Parameters for CreateIpAllowListEntry", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateIpAllowListEntryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateIpAllowListEntryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createIssue","args": [ + { + "name": "input", + "description": "Parameters for CreateIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createLabel","args": [ + { + "name": "input", + "description": "Parameters for CreateLabel", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateLabelInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateLabelPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createLinkedBranch","args": [ + { + "name": "input", + "description": "Parameters for CreateLinkedBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateLinkedBranchInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateLinkedBranchPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createMigrationSource","args": [ + { + "name": "input", + "description": "Parameters for CreateMigrationSource", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMigrationSourceInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateMigrationSourcePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createProject","args": [ + { + "name": "input", + "description": "Parameters for CreateProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateProjectPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createProjectV2","args": [ + { + "name": "input", + "description": "Parameters for CreateProjectV2", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectV2Input", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateProjectV2Payload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createProjectV2Field","args": [ + { + "name": "input", + "description": "Parameters for CreateProjectV2Field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectV2FieldInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateProjectV2FieldPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createPullRequest","args": [ + { + "name": "input", + "description": "Parameters for CreatePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreatePullRequestInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreatePullRequestPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createRef","args": [ + { + "name": "input", + "description": "Parameters for CreateRef", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateRefInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateRefPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createRepository","args": [ + { + "name": "input", + "description": "Parameters for CreateRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateRepositoryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateRepositoryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createRepositoryRuleset","args": [ + { + "name": "input", + "description": "Parameters for CreateRepositoryRuleset", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateRepositoryRulesetInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateRepositoryRulesetPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createSponsorsListing","args": [ + { + "name": "input", + "description": "Parameters for CreateSponsorsListing", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorsListingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateSponsorsListingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createSponsorsTier","args": [ + { + "name": "input", + "description": "Parameters for CreateSponsorsTier", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorsTierInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateSponsorsTierPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createSponsorship","args": [ + { + "name": "input", + "description": "Parameters for CreateSponsorship", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorshipInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateSponsorshipPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createSponsorships","args": [ + { + "name": "input", + "description": "Parameters for CreateSponsorships", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorshipsInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateSponsorshipsPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createTeamDiscussion","args": [ + { + "name": "input", + "description": "Parameters for CreateTeamDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateTeamDiscussionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateTeamDiscussionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createTeamDiscussionComment","args": [ + { + "name": "input", + "description": "Parameters for CreateTeamDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateTeamDiscussionCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateTeamDiscussionCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createUserList","args": [ + { + "name": "input", + "description": "Parameters for CreateUserList", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateUserListInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CreateUserListPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "declineTopicSuggestion","args": [ + { + "name": "input", + "description": "Parameters for DeclineTopicSuggestion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeclineTopicSuggestionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeclineTopicSuggestionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteBranchProtectionRule","args": [ + { + "name": "input", + "description": "Parameters for DeleteBranchProtectionRule", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteBranchProtectionRuleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteBranchProtectionRulePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteDeployment","args": [ + { + "name": "input", + "description": "Parameters for DeleteDeployment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDeploymentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteDeploymentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteDiscussion","args": [ + { + "name": "input", + "description": "Parameters for DeleteDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDiscussionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteDiscussionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteDiscussionComment","args": [ + { + "name": "input", + "description": "Parameters for DeleteDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDiscussionCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteDiscussionCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteEnvironment","args": [ + { + "name": "input", + "description": "Parameters for DeleteEnvironment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteEnvironmentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteEnvironmentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteIpAllowListEntry","args": [ + { + "name": "input", + "description": "Parameters for DeleteIpAllowListEntry", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteIpAllowListEntryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteIpAllowListEntryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteIssue","args": [ + { + "name": "input", + "description": "Parameters for DeleteIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteIssueComment","args": [ + { + "name": "input", + "description": "Parameters for DeleteIssueComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteIssueCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteIssueCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteLabel","args": [ + { + "name": "input", + "description": "Parameters for DeleteLabel", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteLabelInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteLabelPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteLinkedBranch","args": [ + { + "name": "input", + "description": "Parameters for DeleteLinkedBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteLinkedBranchInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteLinkedBranchPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletePackageVersion","args": [ + { + "name": "input", + "description": "Parameters for DeletePackageVersion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeletePackageVersionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeletePackageVersionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteProject","args": [ + { + "name": "input", + "description": "Parameters for DeleteProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteProjectCard","args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectCard", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectCardInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectCardPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteProjectColumn","args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectColumn", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectColumnInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectColumnPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteProjectV2","args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectV2", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2Input", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectV2Payload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteProjectV2Field","args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectV2Field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2FieldInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectV2FieldPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteProjectV2Item","args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectV2Item", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2ItemInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectV2ItemPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteProjectV2Workflow","args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectV2Workflow", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2WorkflowInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteProjectV2WorkflowPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletePullRequestReview","args": [ + { + "name": "input", + "description": "Parameters for DeletePullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeletePullRequestReviewInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeletePullRequestReviewPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletePullRequestReviewComment","args": [ + { + "name": "input", + "description": "Parameters for DeletePullRequestReviewComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeletePullRequestReviewCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeletePullRequestReviewCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteRef","args": [ + { + "name": "input", + "description": "Parameters for DeleteRef", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteRefInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteRefPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteRepositoryRuleset","args": [ + { + "name": "input", + "description": "Parameters for DeleteRepositoryRuleset", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteRepositoryRulesetInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteRepositoryRulesetPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteTeamDiscussion","args": [ + { + "name": "input", + "description": "Parameters for DeleteTeamDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamDiscussionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteTeamDiscussionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteTeamDiscussionComment","args": [ + { + "name": "input", + "description": "Parameters for DeleteTeamDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamDiscussionCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteTeamDiscussionCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteUserList","args": [ + { + "name": "input", + "description": "Parameters for DeleteUserList", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUserListInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteUserListPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteVerifiableDomain","args": [ + { + "name": "input", + "description": "Parameters for DeleteVerifiableDomain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVerifiableDomainInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteVerifiableDomainPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dequeuePullRequest","args": [ + { + "name": "input", + "description": "Parameters for DequeuePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DequeuePullRequestInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DequeuePullRequestPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "disablePullRequestAutoMerge","args": [ + { + "name": "input", + "description": "Parameters for DisablePullRequestAutoMerge", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DisablePullRequestAutoMergeInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DisablePullRequestAutoMergePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismissPullRequestReview","args": [ + { + "name": "input", + "description": "Parameters for DismissPullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DismissPullRequestReviewInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DismissPullRequestReviewPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismissRepositoryVulnerabilityAlert","args": [ + { + "name": "input", + "description": "Parameters for DismissRepositoryVulnerabilityAlert", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DismissRepositoryVulnerabilityAlertInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DismissRepositoryVulnerabilityAlertPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enablePullRequestAutoMerge","args": [ + { + "name": "input", + "description": "Parameters for EnablePullRequestAutoMerge", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnablePullRequestAutoMergeInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "EnablePullRequestAutoMergePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enqueuePullRequest","args": [ + { + "name": "input", + "description": "Parameters for EnqueuePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnqueuePullRequestInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "EnqueuePullRequestPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "followOrganization","args": [ + { + "name": "input", + "description": "Parameters for FollowOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FollowOrganizationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "FollowOrganizationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "followUser","args": [ + { + "name": "input", + "description": "Parameters for FollowUser", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FollowUserInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "FollowUserPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "grantEnterpriseOrganizationsMigratorRole","args": [ + { + "name": "input", + "description": "Parameters for GrantEnterpriseOrganizationsMigratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GrantEnterpriseOrganizationsMigratorRoleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "GrantEnterpriseOrganizationsMigratorRolePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "grantMigratorRole","args": [ + { + "name": "input", + "description": "Parameters for GrantMigratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GrantMigratorRoleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "GrantMigratorRolePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "importProject","args": [ + { + "name": "input", + "description": "Parameters for ImportProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ImportProjectInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ImportProjectPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "inviteEnterpriseAdmin","args": [ + { + "name": "input", + "description": "Parameters for InviteEnterpriseAdmin", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InviteEnterpriseAdminInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "InviteEnterpriseAdminPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "linkProjectV2ToRepository","args": [ + { + "name": "input", + "description": "Parameters for LinkProjectV2ToRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LinkProjectV2ToRepositoryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LinkProjectV2ToRepositoryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "linkProjectV2ToTeam","args": [ + { + "name": "input", + "description": "Parameters for LinkProjectV2ToTeam", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LinkProjectV2ToTeamInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LinkProjectV2ToTeamPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "linkRepositoryToProject","args": [ + { + "name": "input", + "description": "Parameters for LinkRepositoryToProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LinkRepositoryToProjectInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LinkRepositoryToProjectPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockLockable","args": [ + { + "name": "input", + "description": "Parameters for LockLockable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LockLockableInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LockLockablePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "markDiscussionCommentAsAnswer","args": [ + { + "name": "input", + "description": "Parameters for MarkDiscussionCommentAsAnswer", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkDiscussionCommentAsAnswerInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MarkDiscussionCommentAsAnswerPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "markFileAsViewed","args": [ + { + "name": "input", + "description": "Parameters for MarkFileAsViewed", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkFileAsViewedInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MarkFileAsViewedPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "markNotificationAsDone","args": [ + { + "name": "input", + "description": "Parameters for MarkNotificationAsDone", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkNotificationAsDoneInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MarkNotificationAsDonePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "markProjectV2AsTemplate","args": [ + { + "name": "input", + "description": "Parameters for MarkProjectV2AsTemplate", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkProjectV2AsTemplateInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MarkProjectV2AsTemplatePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "markPullRequestReadyForReview","args": [ + { + "name": "input", + "description": "Parameters for MarkPullRequestReadyForReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkPullRequestReadyForReviewInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MarkPullRequestReadyForReviewPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeBranch","args": [ + { + "name": "input", + "description": "Parameters for MergeBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MergeBranchInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MergeBranchPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergePullRequest","args": [ + { + "name": "input", + "description": "Parameters for MergePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MergePullRequestInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MergePullRequestPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizeComment","args": [ + { + "name": "input", + "description": "Parameters for MinimizeComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MinimizeCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MinimizeCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "moveProjectCard","args": [ + { + "name": "input", + "description": "Parameters for MoveProjectCard", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoveProjectCardInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MoveProjectCardPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "moveProjectColumn","args": [ + { + "name": "input", + "description": "Parameters for MoveProjectColumn", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoveProjectColumnInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MoveProjectColumnPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinIssue","args": [ + { + "name": "input", + "description": "Parameters for PinIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PinIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PinIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishSponsorsTier","args": [ + { + "name": "input", + "description": "Parameters for PublishSponsorsTier", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PublishSponsorsTierInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PublishSponsorsTierPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "regenerateEnterpriseIdentityProviderRecoveryCodes","args": [ + { + "name": "input", + "description": "Parameters for RegenerateEnterpriseIdentityProviderRecoveryCodes", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "regenerateVerifiableDomainToken","args": [ + { + "name": "input", + "description": "Parameters for RegenerateVerifiableDomainToken", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RegenerateVerifiableDomainTokenInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RegenerateVerifiableDomainTokenPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rejectDeployments","args": [ + { + "name": "input", + "description": "Parameters for RejectDeployments", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RejectDeploymentsInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RejectDeploymentsPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeAssigneesFromAssignable","args": [ + { + "name": "input", + "description": "Parameters for RemoveAssigneesFromAssignable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveAssigneesFromAssignableInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveAssigneesFromAssignablePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeEnterpriseAdmin","args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseAdmin", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseAdminInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveEnterpriseAdminPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeEnterpriseIdentityProvider","args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseIdentityProvider", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseIdentityProviderInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveEnterpriseIdentityProviderPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeEnterpriseMember","args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseMember", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseMemberInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveEnterpriseMemberPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeEnterpriseOrganization","args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseOrganizationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveEnterpriseOrganizationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeEnterpriseSupportEntitlement","args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseSupportEntitlement", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseSupportEntitlementInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveEnterpriseSupportEntitlementPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeLabelsFromLabelable","args": [ + { + "name": "input", + "description": "Parameters for RemoveLabelsFromLabelable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveLabelsFromLabelableInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveLabelsFromLabelablePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeOutsideCollaborator","args": [ + { + "name": "input", + "description": "Parameters for RemoveOutsideCollaborator", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveOutsideCollaboratorInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveOutsideCollaboratorPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeReaction","args": [ + { + "name": "input", + "description": "Parameters for RemoveReaction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveReactionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveReactionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeStar","args": [ + { + "name": "input", + "description": "Parameters for RemoveStar", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveStarInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveStarPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removeUpvote","args": [ + { + "name": "input", + "description": "Parameters for RemoveUpvote", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveUpvoteInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveUpvotePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reopenDiscussion","args": [ + { + "name": "input", + "description": "Parameters for ReopenDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReopenDiscussionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ReopenDiscussionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reopenIssue","args": [ + { + "name": "input", + "description": "Parameters for ReopenIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReopenIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ReopenIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reopenPullRequest","args": [ + { + "name": "input", + "description": "Parameters for ReopenPullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReopenPullRequestInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ReopenPullRequestPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requestReviews","args": [ + { + "name": "input", + "description": "Parameters for RequestReviews", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestReviewsInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RequestReviewsPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rerequestCheckSuite","args": [ + { + "name": "input", + "description": "Parameters for RerequestCheckSuite", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RerequestCheckSuiteInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RerequestCheckSuitePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resolveReviewThread","args": [ + { + "name": "input", + "description": "Parameters for ResolveReviewThread", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResolveReviewThreadInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ResolveReviewThreadPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "retireSponsorsTier","args": [ + { + "name": "input", + "description": "Parameters for RetireSponsorsTier", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RetireSponsorsTierInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RetireSponsorsTierPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "revertPullRequest","args": [ + { + "name": "input", + "description": "Parameters for RevertPullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RevertPullRequestInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RevertPullRequestPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "revokeEnterpriseOrganizationsMigratorRole","args": [ + { + "name": "input", + "description": "Parameters for RevokeEnterpriseOrganizationsMigratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RevokeEnterpriseOrganizationsMigratorRoleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RevokeEnterpriseOrganizationsMigratorRolePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "revokeMigratorRole","args": [ + { + "name": "input", + "description": "Parameters for RevokeMigratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RevokeMigratorRoleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RevokeMigratorRolePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "setEnterpriseIdentityProvider","args": [ + { + "name": "input", + "description": "Parameters for SetEnterpriseIdentityProvider", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetEnterpriseIdentityProviderInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "SetEnterpriseIdentityProviderPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "setOrganizationInteractionLimit","args": [ + { + "name": "input", + "description": "Parameters for SetOrganizationInteractionLimit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetOrganizationInteractionLimitInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "SetOrganizationInteractionLimitPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "setRepositoryInteractionLimit","args": [ + { + "name": "input", + "description": "Parameters for SetRepositoryInteractionLimit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetRepositoryInteractionLimitInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "SetRepositoryInteractionLimitPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "setUserInteractionLimit","args": [ + { + "name": "input", + "description": "Parameters for SetUserInteractionLimit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetUserInteractionLimitInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "SetUserInteractionLimitPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startOrganizationMigration","args": [ + { + "name": "input", + "description": "Parameters for StartOrganizationMigration", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StartOrganizationMigrationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "StartOrganizationMigrationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startRepositoryMigration","args": [ + { + "name": "input", + "description": "Parameters for StartRepositoryMigration", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StartRepositoryMigrationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "StartRepositoryMigrationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "submitPullRequestReview","args": [ + { + "name": "input", + "description": "Parameters for SubmitPullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SubmitPullRequestReviewInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "SubmitPullRequestReviewPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "transferEnterpriseOrganization","args": [ + { + "name": "input", + "description": "Parameters for TransferEnterpriseOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferEnterpriseOrganizationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "TransferEnterpriseOrganizationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "transferIssue","args": [ + { + "name": "input", + "description": "Parameters for TransferIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "TransferIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unarchiveProjectV2Item","args": [ + { + "name": "input", + "description": "Parameters for UnarchiveProjectV2Item", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnarchiveProjectV2ItemInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnarchiveProjectV2ItemPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unarchiveRepository","args": [ + { + "name": "input", + "description": "Parameters for UnarchiveRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnarchiveRepositoryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnarchiveRepositoryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unfollowOrganization","args": [ + { + "name": "input", + "description": "Parameters for UnfollowOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnfollowOrganizationInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnfollowOrganizationPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unfollowUser","args": [ + { + "name": "input", + "description": "Parameters for UnfollowUser", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnfollowUserInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnfollowUserPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unlinkProjectV2FromRepository","args": [ + { + "name": "input", + "description": "Parameters for UnlinkProjectV2FromRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnlinkProjectV2FromRepositoryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnlinkProjectV2FromRepositoryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unlinkProjectV2FromTeam","args": [ + { + "name": "input", + "description": "Parameters for UnlinkProjectV2FromTeam", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnlinkProjectV2FromTeamInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnlinkProjectV2FromTeamPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unlinkRepositoryFromProject","args": [ + { + "name": "input", + "description": "Parameters for UnlinkRepositoryFromProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnlinkRepositoryFromProjectInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnlinkRepositoryFromProjectPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unlockLockable","args": [ + { + "name": "input", + "description": "Parameters for UnlockLockable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnlockLockableInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnlockLockablePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unmarkDiscussionCommentAsAnswer","args": [ + { + "name": "input", + "description": "Parameters for UnmarkDiscussionCommentAsAnswer", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnmarkDiscussionCommentAsAnswerInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnmarkDiscussionCommentAsAnswerPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unmarkFileAsViewed","args": [ + { + "name": "input", + "description": "Parameters for UnmarkFileAsViewed", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnmarkFileAsViewedInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnmarkFileAsViewedPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unmarkIssueAsDuplicate","args": [ + { + "name": "input", + "description": "Parameters for UnmarkIssueAsDuplicate", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnmarkIssueAsDuplicateInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnmarkIssueAsDuplicatePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unmarkProjectV2AsTemplate","args": [ + { + "name": "input", + "description": "Parameters for UnmarkProjectV2AsTemplate", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnmarkProjectV2AsTemplateInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnmarkProjectV2AsTemplatePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unminimizeComment","args": [ + { + "name": "input", + "description": "Parameters for UnminimizeComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnminimizeCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnminimizeCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unpinIssue","args": [ + { + "name": "input", + "description": "Parameters for UnpinIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnpinIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnpinIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unresolveReviewThread","args": [ + { + "name": "input", + "description": "Parameters for UnresolveReviewThread", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnresolveReviewThreadInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnresolveReviewThreadPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unsubscribeFromNotifications","args": [ + { + "name": "input", + "description": "Parameters for UnsubscribeFromNotifications", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnsubscribeFromNotificationsInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UnsubscribeFromNotificationsPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateBranchProtectionRule","args": [ + { + "name": "input", + "description": "Parameters for UpdateBranchProtectionRule", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateBranchProtectionRuleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateBranchProtectionRulePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateCheckRun","args": [ + { + "name": "input", + "description": "Parameters for UpdateCheckRun", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateCheckRunInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateCheckRunPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateCheckSuitePreferences","args": [ + { + "name": "input", + "description": "Parameters for UpdateCheckSuitePreferences", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateCheckSuitePreferencesInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateCheckSuitePreferencesPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateDiscussion","args": [ + { + "name": "input", + "description": "Parameters for UpdateDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDiscussionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateDiscussionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateDiscussionComment","args": [ + { + "name": "input", + "description": "Parameters for UpdateDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDiscussionCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateDiscussionCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseAdministratorRole","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseAdministratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseAdministratorRoleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseAdministratorRolePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseAllowPrivateRepositoryForkingSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseAllowPrivateRepositoryForkingSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseDefaultRepositoryPermissionSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseDefaultRepositoryPermissionSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseMembersCanChangeRepositoryVisibilitySetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseMembersCanCreateRepositoriesSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanCreateRepositoriesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseMembersCanDeleteIssuesSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanDeleteIssuesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseMembersCanDeleteRepositoriesSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanDeleteRepositoriesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseMembersCanInviteCollaboratorsSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanInviteCollaboratorsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseMembersCanMakePurchasesSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanMakePurchasesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanMakePurchasesSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanMakePurchasesSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseMembersCanUpdateProtectedBranchesSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseMembersCanViewDependencyInsightsSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanViewDependencyInsightsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseOrganizationProjectsSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseOrganizationProjectsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseOrganizationProjectsSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseOrganizationProjectsSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseOwnerOrganizationRole","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseOwnerOrganizationRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseOwnerOrganizationRoleInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseOwnerOrganizationRolePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseProfile","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseProfile", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseProfileInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseProfilePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseRepositoryProjectsSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseRepositoryProjectsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseRepositoryProjectsSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseRepositoryProjectsSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseTeamDiscussionsSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseTeamDiscussionsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseTeamDiscussionsSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseTeamDiscussionsSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnterpriseTwoFactorAuthenticationRequiredSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateEnvironment","args": [ + { + "name": "input", + "description": "Parameters for UpdateEnvironment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnvironmentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnvironmentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateIpAllowListEnabledSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateIpAllowListEnabledSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListEnabledSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateIpAllowListEnabledSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateIpAllowListEntry","args": [ + { + "name": "input", + "description": "Parameters for UpdateIpAllowListEntry", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListEntryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateIpAllowListEntryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateIpAllowListForInstalledAppsEnabledSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateIpAllowListForInstalledAppsEnabledSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListForInstalledAppsEnabledSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateIpAllowListForInstalledAppsEnabledSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateIssue","args": [ + { + "name": "input", + "description": "Parameters for UpdateIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateIssueComment","args": [ + { + "name": "input", + "description": "Parameters for UpdateIssueComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIssueCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateIssueCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateLabel","args": [ + { + "name": "input", + "description": "Parameters for UpdateLabel", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateLabelInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateLabelPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateNotificationRestrictionSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateNotificationRestrictionSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateNotificationRestrictionSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateNotificationRestrictionSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateOrganizationAllowPrivateRepositoryForkingSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateOrganizationAllowPrivateRepositoryForkingSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateOrganizationWebCommitSignoffSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateOrganizationWebCommitSignoffSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateOrganizationWebCommitSignoffSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateOrganizationWebCommitSignoffSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatePatreonSponsorability","args": [ + { + "name": "input", + "description": "Parameters for UpdatePatreonSponsorability", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePatreonSponsorabilityInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdatePatreonSponsorabilityPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateProject","args": [ + { + "name": "input", + "description": "Parameters for UpdateProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateProjectCard","args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectCard", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectCardInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectCardPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateProjectColumn","args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectColumn", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectColumnInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectColumnPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateProjectV2","args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2Input", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectV2Payload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateProjectV2Collaborators","args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2Collaborators", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2CollaboratorsInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectV2CollaboratorsPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateProjectV2DraftIssue","args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2DraftIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2DraftIssueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectV2DraftIssuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateProjectV2ItemFieldValue","args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2ItemFieldValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2ItemFieldValueInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectV2ItemFieldValuePayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateProjectV2ItemPosition","args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2ItemPosition", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2ItemPositionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateProjectV2ItemPositionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatePullRequest","args": [ + { + "name": "input", + "description": "Parameters for UpdatePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdatePullRequestPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatePullRequestBranch","args": [ + { + "name": "input", + "description": "Parameters for UpdatePullRequestBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestBranchInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdatePullRequestBranchPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatePullRequestReview","args": [ + { + "name": "input", + "description": "Parameters for UpdatePullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestReviewInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdatePullRequestReviewPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatePullRequestReviewComment","args": [ + { + "name": "input", + "description": "Parameters for UpdatePullRequestReviewComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestReviewCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdatePullRequestReviewCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateRef","args": [ + { + "name": "input", + "description": "Parameters for UpdateRef", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRefInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateRefPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateRefs","args": [ + { + "name": "input", + "description": "Parameters for UpdateRefs", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRefsInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateRefsPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateRepository","args": [ + { + "name": "input", + "description": "Parameters for UpdateRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateRepositoryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateRepositoryRuleset","args": [ + { + "name": "input", + "description": "Parameters for UpdateRepositoryRuleset", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryRulesetInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateRepositoryRulesetPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateRepositoryWebCommitSignoffSetting","args": [ + { + "name": "input", + "description": "Parameters for UpdateRepositoryWebCommitSignoffSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryWebCommitSignoffSettingInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateRepositoryWebCommitSignoffSettingPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateSponsorshipPreferences","args": [ + { + "name": "input", + "description": "Parameters for UpdateSponsorshipPreferences", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSponsorshipPreferencesInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateSponsorshipPreferencesPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateSubscription","args": [ + { + "name": "input", + "description": "Parameters for UpdateSubscription", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSubscriptionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateSubscriptionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateTeamDiscussion","args": [ + { + "name": "input", + "description": "Parameters for UpdateTeamDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamDiscussionInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateTeamDiscussionPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateTeamDiscussionComment","args": [ + { + "name": "input", + "description": "Parameters for UpdateTeamDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamDiscussionCommentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateTeamDiscussionCommentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateTeamReviewAssignment","args": [ + { + "name": "input", + "description": "Parameters for UpdateTeamReviewAssignment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamReviewAssignmentInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateTeamReviewAssignmentPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateTeamsRepository","args": [ + { + "name": "input", + "description": "Parameters for UpdateTeamsRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamsRepositoryInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateTeamsRepositoryPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateTopics","args": [ + { + "name": "input", + "description": "Parameters for UpdateTopics", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTopicsInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateTopicsPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateUserList","args": [ + { + "name": "input", + "description": "Parameters for UpdateUserList", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUserListInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateUserListPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updateUserListsForItem","args": [ + { + "name": "input", + "description": "Parameters for UpdateUserListsForItem", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUserListsForItemInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateUserListsForItemPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "verifyVerifiableDomain","args": [ + { + "name": "input", + "description": "Parameters for VerifyVerifiableDomain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VerifyVerifiableDomainInput", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "VerifyVerifiableDomainPayload", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "description": "An object with an ID.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddedToMergeQueueEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AddedToProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AssignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutoMergeDisabledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutoMergeEnabledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutoRebaseEnabledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutoSquashEnabledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutomaticBaseChangeFailedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutomaticBaseChangeSucceededEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BaseRefChangedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BaseRefDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BaseRefForcePushedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Blob", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Bot", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BypassForcePushAllowance", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BypassPullRequestAllowance", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CWE", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ClosedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CodeOfConduct", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommentDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommitCommentThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Comparison", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConnectedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertToDraftEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertedNoteToIssueEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertedToDiscussionEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CrossReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DemilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DependencyGraphManifest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeployKey", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeployedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeploymentEnvironmentChangedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeploymentReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeploymentStatus", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DisconnectedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionCategory", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionPoll", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionPollOption", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DraftIssue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseIdentityProvider", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfo", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccount", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmail", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUpload", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "EnterpriseUserAccount", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Environment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ExternalIdentity", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Gist", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "GistComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefForcePushedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefRestoredEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IpAllowListEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Label", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Language", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "License", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LinkedBranch", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MarkedAsDuplicateEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MarketplaceCategory", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MarketplaceListing", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MemberFeatureRequestNotification", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposClearAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MentionedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MergeQueue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MergeQueueEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MergedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MigrationSource", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MovedColumnsInProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OIDCProvider", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OauthApplicationCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgAddBillingManagerAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgBlockUserAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableOauthAppRestrictionsAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableSamlAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableTwoFactorRequirementAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableOauthAppRestrictionsAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableSamlAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableTwoFactorRequirementAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteToBusinessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessApprovedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessBlockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessDeniedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessRequestedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessUnblockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveBillingManagerAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveOutsideCollaboratorAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUnblockUserAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrganizationIdentityProvider", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrganizationMigration", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Package", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PackageFile", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PackageTag", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PackageVersion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PinnedDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PinnedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PinnedIssue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectCard", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectColumn", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2Field", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldDateValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldIterationValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldNumberValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldSingleSelectValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldTextValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationField", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectField", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2View", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2Workflow", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PublicKey", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitCommentThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Push", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PushAllowance", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Reaction", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReadyForReviewEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Release", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReleaseAsset", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RemovedFromMergeQueueEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RemovedFromProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RenamedTitleEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReopenedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoArchivedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoChangeMergeSettingAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigLockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoDestroyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryInvitation", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryMigration", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRule", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActor", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryTopic", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlert", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewDismissalAllowance", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewDismissedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestRemovedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SavedReply", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisory", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SponsorsActivity", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SponsorsListingFeaturedItem", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SponsorshipNewsletter", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Status", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "StatusCheckRollup", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "StatusContext", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Tag", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddRepositoryAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamChangeParentTeamAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveRepositoryAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TransferredEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Tree", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnassignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnmarkedAsDuplicateEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnpinnedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnsubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UserBlockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UserContentEdit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UserList", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UserStatus", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "VerifiableDomain", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Workflow", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "WorkflowRun", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "WorkflowRunFile", + "ofType": None + } + ] + }, + { + "kind": "ENUM", + "name": "NotificationRestrictionSettingValue", + "description": "The possible values for the notification restriction setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ENABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OIDCProvider", + "description": "An OIDC identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", + "fields": [ + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "externalIdentities","args": [ + { + "name": "membersOnly", + "description": "Filter to external identities with valid org membership only", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "login", + "description": "Filter to external identities with the users login", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userName", + "description": "Filter to external identities with the users userName/NameID attribute", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ExternalIdentityConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "providerType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OIDCProviderType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tenantId","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OIDCProviderType", + "description": "The OIDC identity provider type", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "AAD","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "OauthApplicationAuditEntryData", + "description": "Metadata for an audit entry with action oauth_application.*", + "fields": [ + { + "name": "oauthApplicationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OauthApplicationCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessApprovedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessBlockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessDeniedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessRequestedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessUnblockedAuditEntry", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "OauthApplicationCreateAuditEntry", + "description": "Audit log entry for a oauth_application.create event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "applicationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "callbackUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rateLimit","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "ENUM", + "name": "OauthApplicationCreateAuditEntryState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OauthApplicationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OauthApplicationCreateAuditEntryState", + "description": "The state of an OAuth application when it was created.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ACTIVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUSPENDED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING_DELETION","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OperationType", + "description": "The corresponding operation type for the action", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ACCESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTHENTICATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MODIFY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REMOVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RESTORE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TRANSFER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrderDirection", + "description": "Possible directions in which to order a list of items when provided an `orderBy` argument.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ASC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DESC","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgAddBillingManagerAuditEntry", + "description": "Audit log entry for a org.add_billing_manager", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitationEmail","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgAddMemberAuditEntry", + "description": "Audit log entry for a org.add_member", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permission","args": [], + "type": { + "kind": "ENUM", + "name": "OrgAddMemberAuditEntryPermission", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgAddMemberAuditEntryPermission", + "description": "The permissions available to members on an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "READ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgBlockUserAuditEntry", + "description": "Audit log entry for a org.block_user", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockedUser","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockedUserName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockedUserResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockedUserUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", + "description": "Audit log entry for a org.config.disable_collaborators_only event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", + "description": "Audit log entry for a org.config.enable_collaborators_only event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgCreateAuditEntry", + "description": "Audit log entry for a org.create event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "billingPlan","args": [], + "type": { + "kind": "ENUM", + "name": "OrgCreateAuditEntryBillingPlan", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgCreateAuditEntryBillingPlan", + "description": "The billing plans available for organizations.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "FREE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BUSINESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BUSINESS_PLUS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNLIMITED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TIERED_PER_SEAT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableOauthAppRestrictionsAuditEntry", + "description": "Audit log entry for a org.disable_oauth_app_restrictions event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableSamlAuditEntry", + "description": "Audit log entry for a org.disable_saml event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "digestMethodUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issuerUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signatureMethodUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "singleSignOnUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableTwoFactorRequirementAuditEntry", + "description": "Audit log entry for a org.disable_two_factor_requirement event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableOauthAppRestrictionsAuditEntry", + "description": "Audit log entry for a org.enable_oauth_app_restrictions event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableSamlAuditEntry", + "description": "Audit log entry for a org.enable_saml event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "digestMethodUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issuerUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signatureMethodUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "singleSignOnUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableTwoFactorRequirementAuditEntry", + "description": "Audit log entry for a org.enable_two_factor_requirement event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "OrgEnterpriseOwnerOrder", + "description": "Ordering options for an organization's enterprise owner connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrgEnterpriseOwnerOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgEnterpriseOwnerOrderField", + "description": "Properties by which enterprise owners can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LOGIN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteMemberAuditEntry", + "description": "Audit log entry for a org.invite_member event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationInvitation","args": [], + "type": { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteToBusinessAuditEntry", + "description": "Audit log entry for a org.invite_to_business event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessApprovedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_approved event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OauthApplicationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessBlockedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_blocked event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OauthApplicationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessDeniedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_denied event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OauthApplicationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessRequestedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_requested event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OauthApplicationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessUnblockedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_unblocked event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oauthApplicationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OauthApplicationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveBillingManagerAuditEntry", + "description": "Audit log entry for a org.remove_billing_manager event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reason","args": [], + "type": { + "kind": "ENUM", + "name": "OrgRemoveBillingManagerAuditEntryReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgRemoveBillingManagerAuditEntryReason", + "description": "The reason a billing manager was removed from an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SAML_EXTERNAL_IDENTITY_MISSING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SAML_SSO_ENFORCEMENT_REQUIRES_EXTERNAL_IDENTITY","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveMemberAuditEntry", + "description": "Audit log entry for a org.remove_member event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membershipTypes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrgRemoveMemberAuditEntryMembershipType", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reason","args": [], + "type": { + "kind": "ENUM", + "name": "OrgRemoveMemberAuditEntryReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgRemoveMemberAuditEntryMembershipType", + "description": "The type of membership a user has with an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "SUSPENDED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DIRECT_MEMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BILLING_MANAGER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNAFFILIATED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OUTSIDE_COLLABORATOR","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgRemoveMemberAuditEntryReason", + "description": "The reason a member was removed from an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SAML_EXTERNAL_IDENTITY_MISSING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SAML_SSO_ENFORCEMENT_REQUIRES_EXTERNAL_IDENTITY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "USER_ACCOUNT_DELETED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TWO_FACTOR_ACCOUNT_RECOVERY","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveOutsideCollaboratorAuditEntry", + "description": "Audit log entry for a org.remove_outside_collaborator event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membershipTypes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrgRemoveOutsideCollaboratorAuditEntryMembershipType", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reason","args": [], + "type": { + "kind": "ENUM", + "name": "OrgRemoveOutsideCollaboratorAuditEntryReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgRemoveOutsideCollaboratorAuditEntryMembershipType", + "description": "The type of membership a user has with an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OUTSIDE_COLLABORATOR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNAFFILIATED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BILLING_MANAGER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgRemoveOutsideCollaboratorAuditEntryReason", + "description": "The reason an outside collaborator was removed from an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SAML_EXTERNAL_IDENTITY_MISSING","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberAuditEntry", + "description": "Audit log entry for a org.restore_member event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restoredCustomEmailRoutingsCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restoredIssueAssignmentsCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restoredMemberships","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "OrgRestoreMemberAuditEntryMembership", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restoredMembershipsCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restoredRepositoriesCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restoredRepositoryStarsCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "restoredRepositoryWatchesCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "OrgRestoreMemberAuditEntryMembership", + "description": "Types of memberships that can be restored for an Organization member.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipTeamAuditEntryData", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", + "description": "Metadata for an organization membership for org.restore_member actions", + "fields": [ + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", + "description": "Metadata for a repository membership for org.restore_member actions", + "fields": [ + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipTeamAuditEntryData", + "description": "Metadata for a team membership for org.restore_member actions", + "fields": [ + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "TeamAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgUnblockUserAuditEntry", + "description": "Audit log entry for a org.unblock_user", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockedUser","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockedUserName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockedUserResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockedUserUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", + "description": "Audit log entry for a org.update_default_repository_permission", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permission","args": [], + "type": { + "kind": "ENUM", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permissionWas","args": [], + "type": { + "kind": "ENUM", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", + "description": "The default permission a repository can have in an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "READ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WRITE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberAuditEntry", + "description": "Audit log entry for a org.update_member event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permission","args": [], + "type": { + "kind": "ENUM", + "name": "OrgUpdateMemberAuditEntryPermission", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permissionWas","args": [], + "type": { + "kind": "ENUM", + "name": "OrgUpdateMemberAuditEntryPermission", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgUpdateMemberAuditEntryPermission", + "description": "The permissions available to members on an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "READ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "description": "Audit log entry for a org.update_member_repository_creation_permission event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "canCreateRepositories","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "ENUM", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility", + "description": "The permissions available for repository creation on an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC_INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE_INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC_PRIVATE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "description": "Audit log entry for a org.update_member_repository_invitation_permission event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "canInviteOutsideCollaboratorsToRepositories","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "description": "An account on GitHub, with one or more owners, that has repositories, members and teams.", + "fields": [ + { + "name": "announcement","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "announcementExpiresAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "announcementUserDismissible","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "anyPinnableItems","args": [ + { + "name": "type", + "description": "Filter to only a particular kind of pinnable item.", + "type": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "archivedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "auditLog","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "The query string to filter audit entries", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the returned audit log entries.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AuditLogOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationAuditEntryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "descriptionHTML","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "domains","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isVerified", + "description": "Filter by if the domain is verified.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "isApproved", + "description": "Filter by if the domain is approved.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "orderBy", + "description": "Ordering options for verifiable domains returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "VerifiableDomainOrder", + "ofType": None + }, + "defaultValue": "{field: DOMAIN, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "VerifiableDomainConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseOwners","args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationRole", + "description": "The organization role to filter by.", + "type": { + "kind": "ENUM", + "name": "RoleInOrganization", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for enterprise owners returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrgEnterpriseOwnerOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationEnterpriseOwnerConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "estimatedNextSponsorsPayoutInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasSponsorsListing","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "interactionAbility","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryInteractionAbility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListEnabledSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListEnabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListEntries","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for IP allow list entries returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IpAllowListEntryOrder", + "ofType": None + }, + "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IpAllowListEntryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListForInstalledAppsEnabledSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListForInstalledAppsEnabledSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSponsoredBy","args": [ + { + "name": "accountLogin", + "description": "The target account's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSponsoringViewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isVerified","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "itemShowcase","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProfileItemShowcase", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lifetimeReceivedSponsorshipValues","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for results returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorAndLifetimeValueOrder", + "ofType": None + }, + "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "location","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mannequins","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "login", + "description": "Filter mannequins by login.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for mannequins returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "MannequinOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MannequinConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "memberStatuses","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for user statuses returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserStatusOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserStatusConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersCanForkPrivateRepositories","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersWithRole","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationMemberConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "monthlyEstimatedSponsorsIncomeInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "newTeamResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "newTeamUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "notificationDeliveryRestrictionEnabledSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "NotificationRestrictionSettingValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationBillingEmail","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "packages","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "names", + "description": "Find packages by their names.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "description": "Find packages in a repository by ID.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "packageType", + "description": "Filter registry package by type.", + "type": { + "kind": "ENUM", + "name": "PackageType", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PackageOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pendingMembers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnableItems","args": [ + { + "name": "types", + "description": "Filter the types of pinnable items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedItems","args": [ + { + "name": "types", + "description": "Filter the types of pinned items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedItemsRemaining","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [ + { + "name": "number", + "description": "The project number to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projects","args": [ + { + "name": "orderBy", + "description": "Ordering options for projects returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "search", + "description": "Query to search projects by, currently only searching by name.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the projects by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsV2","args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "ofType": None + }, + "defaultValue": "{field: NUMBER, direction: DESC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "recentProjects","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositories","args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": "[OWNER, COLLABORATOR]" + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isArchived", + "description": "If non-null, filters repositories according to whether they are archived and not maintained", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isFork", + "description": "If non-null, filters repositories according to whether they are forks of another repository", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [ + { + "name": "name", + "description": "Name of Repository to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "followRenames", + "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryDiscussionComments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "description": "Filter discussion comments to only those in a specific repository.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "onlyAnswers", + "description": "Filter discussion comments to only those that were marked as the answer", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryDiscussions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for discussions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DiscussionOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + }, + { + "name": "repositoryId", + "description": "Filter discussions to only those in a specific repository.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "answered", + "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "states", + "description": "A list of states to filter the discussions by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DiscussionState", + "ofType": None + } + } + }, + "defaultValue": "[]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryMigrations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "state", + "description": "Filter repository migrations by state.", + "type": { + "kind": "ENUM", + "name": "MigrationState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryName", + "description": "Filter repository migrations by repository name.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repository migrations returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryMigrationOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryMigrationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresTwoFactorAuthentication","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ruleset","args": [ + { + "name": "databaseId", + "description": "The ID of the ruleset to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rulesets","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "includeParents", + "description": "Return rulesets configured at higher levels that apply to this organization", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryRulesetConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "samlIdentityProvider","args": [], + "type": { + "kind": "OBJECT", + "name": "OrganizationIdentityProvider", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsoring","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the users and organizations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorOrder", + "ofType": None + }, + "defaultValue": "{field: RELEVANCE, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsors","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "tierId", + "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsors returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorOrder", + "ofType": None + }, + "defaultValue": "{field: RELEVANCE, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsActivities","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "period", + "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", + "type": { + "kind": "ENUM", + "name": "SponsorsActivityPeriod", + "ofType": None + }, + "defaultValue": "MONTH" + }, + { + "name": "since", + "description": "Filter activities to those that occurred on or after this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "until", + "description": "Filter activities to those that occurred before this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for activity returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorsActivityOrder", + "ofType": None + }, + "defaultValue": "{field: TIMESTAMP, direction: DESC}" + }, + { + "name": "actions", + "description": "Filter activities to only the specified actions.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "ofType": None + } + } + }, + "defaultValue": "[]" + }, + { + "name": "includeAsSponsor", + "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "includePrivate", + "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsActivityConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsListing","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipForViewerAsSponsor","args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipForViewerAsSponsorable","args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipNewsletters","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorship updates returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipNewsletterOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipNewsletterConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipsAsMaintainer","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "includePrivate", + "description": "Whether or not to include private sponsorships in the result set", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipsAsSponsor","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "maintainerLogins", + "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [ + { + "name": "slug", + "description": "The name or slug of the team to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teams","args": [ + { + "name": "privacy", + "description": "If non-null, filters teams according to privacy", + "type": { + "kind": "ENUM", + "name": "TeamPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "notificationSetting", + "description": "If non-null, filters teams according to notification setting", + "type": { + "kind": "ENUM", + "name": "TeamNotificationSetting", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "role", + "description": "If non-null, filters teams according to whether the viewer is an admin or member on team", + "type": { + "kind": "ENUM", + "name": "TeamRole", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "If non-null, filters teams with query on team name and team slug", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userLogins", + "description": "User logins to filter by", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for teams returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ldapMapped", + "description": "If true, filters teams that are mapped to an LDAP Group (Enterprise only)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "rootTeamsOnly", + "description": "If true, restrict to only root teams", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalSponsorshipAmountAsSponsorInCents","args": [ + { + "name": "since", + "description": "Filter payments to those that occurred on or after this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "until", + "description": "Filter payments to those that occurred before this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogins", + "description": "Filter payments to those made to the users or organizations with the specified usernames.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": "[]" + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "twitterUsername","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanAdminister","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanChangePinnedItems","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanCreateProjects","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanCreateRepositories","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanCreateTeams","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSponsor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerIsAMember","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerIsFollowing","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerIsSponsoring","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "webCommitSignoffRequired","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "websiteUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "AnnouncementBanner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "MemberStatusable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "PackageOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProfileOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Owner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Recent", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryDiscussionAuthor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryDiscussionCommentAuthor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "OrganizationAuditEntry", + "description": "An audit entry in an organization audit log.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposClearAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OauthApplicationCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgAddBillingManagerAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgBlockUserAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableOauthAppRestrictionsAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableSamlAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableTwoFactorRequirementAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableOauthAppRestrictionsAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableSamlAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableTwoFactorRequirementAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteToBusinessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessApprovedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessBlockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessDeniedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessRequestedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessUnblockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveBillingManagerAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveOutsideCollaboratorAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUnblockUserAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoArchivedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoChangeMergeSettingAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigLockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoDestroyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddRepositoryAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamChangeParentTeamAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveRepositoryAuditEntry", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "OrganizationAuditEntryConnection", + "description": "The connection type for OrganizationAuditEntry.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationAuditEntryEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "OrganizationAuditEntry", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "description": "Metadata for an audit entry with action org.*", + "fields": [ + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposClearAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OauthApplicationCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgAddBillingManagerAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgBlockUserAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableOauthAppRestrictionsAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableSamlAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgDisableTwoFactorRequirementAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableOauthAppRestrictionsAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableSamlAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgEnableTwoFactorRequirementAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgInviteToBusinessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessApprovedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessBlockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessDeniedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessRequestedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessUnblockedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveBillingManagerAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRemoveOutsideCollaboratorAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUnblockUserAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoArchivedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoChangeMergeSettingAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigLockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoDestroyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddRepositoryAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamChangeParentTeamAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveRepositoryAuditEntry", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "OrganizationAuditEntryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "OrganizationAuditEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationConnection", + "description": "A list of organizations managed by an enterprise.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationEnterpriseOwnerConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationEnterpriseOwnerEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationEnterpriseOwnerEdge", + "description": "An enterprise owner in the context of an organization that is part of the enterprise.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationRole","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RoleInOrganization", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationIdentityProvider", + "description": "An Identity Provider configured to provision SAML and SCIM identities for Organizations. Visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members.", + "fields": [ + { + "name": "digestMethod","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "externalIdentities","args": [ + { + "name": "membersOnly", + "description": "Filter to external identities with valid org membership only", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "login", + "description": "Filter to external identities with the users login", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userName", + "description": "Filter to external identities with the users userName/NameID attribute", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ExternalIdentityConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "idpCertificate","args": [], + "type": { + "kind": "SCALAR", + "name": "X509Certificate", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issuer","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signatureMethod","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ssoUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "description": "An Invitation for a user to an organization.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitationSource","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrganizationInvitationSource", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitationType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrganizationInvitationType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitee","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "inviter","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "`inviter` will be removed. `inviter` will be replaced by `inviterActor`. Removal on 2024-07-01 UTC." + }, + { + "name": "inviterActor","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "role","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrganizationInvitationRole", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationInvitationConnection", + "description": "The connection type for OrganizationInvitation.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvitationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationInvitationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrganizationInvitationRole", + "description": "The possible organization invitation roles.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DIRECT_MEMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BILLING_MANAGER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REINSTATE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrganizationInvitationSource", + "description": "The possible organization invitation sources.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "UNKNOWN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MEMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SCIM","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrganizationInvitationType", + "description": "The possible organization invitation types.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "USER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EMAIL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationMemberConnection", + "description": "A list of users who belong to the organization.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationMemberEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationMemberEdge", + "description": "Represents a user within an organization.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasTwoFactorEnabled","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "role","args": [], + "type": { + "kind": "ENUM", + "name": "OrganizationMemberRole", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrganizationMemberRole", + "description": "The possible roles within an organization for its members.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MEMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrganizationMembersCanCreateRepositoriesSettingValue", + "description": "The possible values for the members can create repositories setting on an organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationMigration", + "description": "A GitHub Enterprise Importer (GEI) organization migration.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "failureReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "remainingRepositoriesCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sourceOrgName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sourceOrgUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrganizationMigrationState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "targetOrgName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalRepositoriesCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrganizationMigrationState", + "description": "The Octoshift Organization migration state.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NOT_STARTED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "QUEUED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN_PROGRESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRE_REPO_MIGRATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REPO_MIGRATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "POST_REPO_MIGRATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUCCEEDED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING_VALIDATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILED_VALIDATION","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "OrganizationOrUser", + "description": "Used for argument of CreateProjectV2 mutation.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "description": "Ordering options for organization connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrganizationOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "OrganizationOrderField", + "description": "Properties by which organization connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LOGIN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationTeamsHovercardContext", + "description": "An organization teams hovercard context", + "fields": [ + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "octicon","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "relevantTeams","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalTeamCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "HovercardContext", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "OrganizationsHovercardContext", + "description": "An organization list hovercard context", + "fields": [ + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "octicon","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "relevantOrganizations","args": [ + { + "name": "orderBy", + "description": "Ordering options for the User's organizations.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalOrganizationCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "HovercardContext", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Package", + "description": "Information for an uploaded package.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "latestVersion","args": [], + "type": { + "kind": "OBJECT", + "name": "PackageVersion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "packageType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PackageType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "statistics","args": [], + "type": { + "kind": "OBJECT", + "name": "PackageStatistics", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "version","args": [ + { + "name": "version", + "description": "The package version.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PackageVersion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "versions","args": [ + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PackageVersionOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageVersionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageConnection", + "description": "The connection type for Package.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Package", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Package", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageFile", + "description": "A file in a package version.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "md5","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "packageVersion","args": [], + "type": { + "kind": "OBJECT", + "name": "PackageVersion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sha1","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sha256","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "size","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageFileConnection", + "description": "The connection type for PackageFile.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageFileEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageFile", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageFileEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PackageFile", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "PackageFileOrder", + "description": "Ways in which lists of package files can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "ENUM", + "name": "PackageFileOrderField", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PackageFileOrderField", + "description": "Properties by which package file connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "PackageOrder", + "description": "Ways in which lists of packages can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "ENUM", + "name": "PackageOrderField", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PackageOrderField", + "description": "Properties by which package connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "PackageOwner", + "description": "Represents an owner of a package.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "packages","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "names", + "description": "Find packages by their names.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "description": "Find packages in a repository by ID.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "packageType", + "description": "Filter registry package by type.", + "type": { + "kind": "ENUM", + "name": "PackageType", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PackageOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "PackageStatistics", + "description": "Represents a object that contains package activity statistics such as downloads.", + "fields": [ + { + "name": "downloadsTotalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageTag", + "description": "A version tag contains the mapping between a tag name and a version.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "version","args": [], + "type": { + "kind": "OBJECT", + "name": "PackageVersion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PackageType", + "description": "The possible types of a package.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NPM","isDeprecated": True, + "deprecationReason": "NPM will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC." + }, + { + "name": "RUBYGEMS","isDeprecated": True, + "deprecationReason": "RUBYGEMS will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-12-28 UTC." + }, + { + "name": "MAVEN","isDeprecated": True, + "deprecationReason": "MAVEN will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2023-02-10 UTC." + }, + { + "name": "DOCKER","isDeprecated": True, + "deprecationReason": "DOCKER will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2021-06-21 UTC." + }, + { + "name": "DEBIAN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NUGET","isDeprecated": True, + "deprecationReason": "NUGET will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC." + }, + { + "name": "PYPI","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageVersion", + "description": "Information about a specific package version.", + "fields": [ + { + "name": "files","args": [ + { + "name": "orderBy", + "description": "Ordering of the returned package files.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PackageFileOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageFileConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "package","args": [], + "type": { + "kind": "OBJECT", + "name": "Package", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "platform","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "preRelease","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "readme","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "release","args": [], + "type": { + "kind": "OBJECT", + "name": "Release", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "statistics","args": [], + "type": { + "kind": "OBJECT", + "name": "PackageVersionStatistics", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "summary","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "version","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageVersionConnection", + "description": "The connection type for PackageVersion.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageVersionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageVersion", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageVersionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PackageVersion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "PackageVersionOrder", + "description": "Ways in which lists of package versions can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "ENUM", + "name": "PackageVersionOrderField", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PackageVersionOrderField", + "description": "Properties by which package version connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PackageVersionStatistics", + "description": "Represents a object that contains package version activity statistics such as downloads.", + "fields": [ + { + "name": "downloadsTotalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PageInfo", + "description": "Information about pagination in a connection.", + "fields": [ + { + "name": "endCursor","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasNextPage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasPreviousPage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startCursor","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PatchStatus", + "description": "The possible types of patch statuses.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ADDED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DELETED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RENAMED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COPIED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MODIFIED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CHANGED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "PermissionGranter", + "description": "Types that can grant permissions on a repository to a user", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "PermissionSource", + "description": "A level of permission and source for a user's access to a repository.", + "fields": [ + { + "name": "organization","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permission","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DefaultRepositoryPermissionField", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "roleName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "source","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "PermissionGranter", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "PinIssueInput", + "description": "Autogenerated input type of PinIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "issueId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinIssuePayload", + "description": "Autogenerated return type of PinIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "PinnableItem", + "description": "Types that can be pinned to a profile page.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Gist", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "description": "The connection type for PinnableItem.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnableItemEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "PinnableItem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinnableItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "PinnableItem", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PinnableItemType", + "description": "Represents items that can be pinned to a profile page or dashboard.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "REPOSITORY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GIST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ISSUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PROJECT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "USER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ORGANIZATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TEAM","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinnedDiscussion", + "description": "A Pinned Discussion is a discussion pinned to a repository's index page.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "gradientStopColors","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pattern","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PinnedDiscussionPattern", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedBy","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "preconfiguredGradient","args": [], + "type": { + "kind": "ENUM", + "name": "PinnedDiscussionGradient", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinnedDiscussionConnection", + "description": "The connection type for PinnedDiscussion.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnedDiscussionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnedDiscussion", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinnedDiscussionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PinnedDiscussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PinnedDiscussionGradient", + "description": "Preconfigured gradients that may be used to style discussions pinned within a repository.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "RED_ORANGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BLUE_MINT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BLUE_PURPLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PINK_BLUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PURPLE_CORAL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PinnedDiscussionPattern", + "description": "Preconfigured background patterns that may be used to style discussions pinned within a repository.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DOT_FILL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PLUS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ZAP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CHEVRON_UP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DOT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HEART_FILL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinnedEvent", + "description": "Represents a 'pinned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinnedIssue", + "description": "A Pinned Issue is a issue pinned to a repository's index page.", + "fields": [ + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDatabaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedBy","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinnedIssueConnection", + "description": "The connection type for PinnedIssue.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnedIssueEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnedIssue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PinnedIssueEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PinnedIssue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "PreciseDateTime", + "description": "An ISO-8601 encoded UTC date string with millisecond precision.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingDisableAuditEntry", + "description": "Audit log entry for a private_repository_forking.disable event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingEnableAuditEntry", + "description": "Audit log entry for a private_repository_forking.enable event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProfileItemShowcase", + "description": "A curatable list of repositories relating to a repository owner, which defaults to showing the most popular repositories they own.", + "fields": [ + { + "name": "hasPinnedItems","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "items","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "ProfileOwner", + "description": "Represents any entity on GitHub that has a profile page.", + "fields": [ + { + "name": "anyPinnableItems","args": [ + { + "name": "type", + "description": "Filter to only a particular kind of pinnable item.", + "type": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "itemShowcase","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProfileItemShowcase", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "location","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnableItems","args": [ + { + "name": "types", + "description": "Filter the types of pinnable items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedItems","args": [ + { + "name": "types", + "description": "Filter the types of pinned items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedItemsRemaining","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanChangePinnedItems","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "websiteUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "Project", + "description": "Projects manage issues, pull requests and notes within a project owner.", + "fields": [ + { + "name": "body","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "columns","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectColumnConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "ProjectOwner", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pendingCards","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "archivedStates", + "description": "A list of archived states to filter the cards by", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectCardArchivedState", + "ofType": None + } + }, + "defaultValue": "[ARCHIVED, NOT_ARCHIVED]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCardConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "progress","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectProgress", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanClose","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReopen","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Closable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectCard", + "description": "A card in a project.", + "fields": [ + { + "name": "column","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectColumn", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "content","args": [], + "type": { + "kind": "UNION", + "name": "ProjectCardItem", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isArchived","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "note","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "ENUM", + "name": "ProjectCardState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectCardArchivedState", + "description": "The possible archived states of a project card.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ARCHIVED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NOT_ARCHIVED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectCardConnection", + "description": "The connection type for ProjectCard.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCardEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCard", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectCardEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectCard", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCardImport", + "description": "An issue or PR and its owning repository to be used in a project card.", + "fields": None, + "inputFields": [ + { + "name": "repository","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "number","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "ProjectCardItem", + "description": "Types that can be inside Project Cards.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "ENUM", + "name": "ProjectCardState", + "description": "Various content states of a ProjectCard", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CONTENT_ONLY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NOTE_ONLY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REDACTED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectColumn", + "description": "A column inside a project.", + "fields": [ + { + "name": "cards","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "archivedStates", + "description": "A list of archived states to filter the cards by", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectCardArchivedState", + "ofType": None + } + }, + "defaultValue": "[ARCHIVED, NOT_ARCHIVED]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCardConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "purpose","args": [], + "type": { + "kind": "ENUM", + "name": "ProjectColumnPurpose", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectColumnConnection", + "description": "The connection type for ProjectColumn.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectColumnEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectColumn", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectColumnEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectColumn", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectColumnImport", + "description": "A project column and a list of its issues and PRs.", + "fields": None, + "inputFields": [ + { + "name": "columnName","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "position","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "issues","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectCardImport", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectColumnPurpose", + "description": "The semantic purpose of the column - todo, in progress, or done.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TODO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN_PROGRESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DONE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectConnection", + "description": "A list of projects associated with the owner.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectOrder", + "description": "Ways in which lists of projects can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectOrderField", + "description": "Properties by which project connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "ProjectOwner", + "description": "Represents an owner of a Project.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [ + { + "name": "number", + "description": "The project number to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projects","args": [ + { + "name": "orderBy", + "description": "Ordering options for projects returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "search", + "description": "Query to search projects by, currently only searching by name.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the projects by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanCreateProjects","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectProgress", + "description": "Project progress stats.", + "fields": [ + { + "name": "doneCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "donePercentage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "inProgressCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "inProgressPercentage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "todoCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "todoPercentage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectState", + "description": "State of the project; either 'open' or 'closed'", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectTemplate", + "description": "GitHub-provided templates for Projects", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "BASIC_KANBAN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTOMATED_KANBAN_V2","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTOMATED_REVIEWS_KANBAN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BUG_TRIAGE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2", + "description": "New projects that manage issues, pull requests and drafts using tables and boards.", + "fields": [ + { + "name": "closed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [ + { + "name": "name", + "description": "The name of the field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fields","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 fields returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "items","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 items returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ItemOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "ProjectV2Owner", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "public","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "readme","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositories","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "shortDescription","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teams","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for teams returned from this connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamOrder", + "ofType": None + }, + "defaultValue": "{field: NAME, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "template","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "view","args": [ + { + "name": "number", + "description": "The number of a view belonging to the project", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2View", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanClose","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReopen","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "views","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 views returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ViewOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ViewConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "workflow","args": [ + { + "name": "number", + "description": "The number of a workflow belonging to the project", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Workflow", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "workflows","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 workflows returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2WorkflowOrder", + "ofType": None + }, + "defaultValue": "{field: NAME, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2WorkflowConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Closable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "ProjectV2Actor", + "description": "Possible collaborators for a project.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectV2ActorConnection", + "description": "The connection type for ProjectV2Actor.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ActorEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2Actor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ActorEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "ProjectV2Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Collaborator", + "description": "A collaborator to update on a project. Only one of the userId or teamId should be provided.", + "fields": None, + "inputFields": [ + { + "name": "userId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "teamId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "role","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2Roles", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "description": "The connection type for ProjectV2.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Edge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2CustomFieldType", + "description": "The type of a project field.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TEXT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SINGLE_SELECT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NUMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DATE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2Edge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2Field", + "description": "A field inside a project.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dataType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2FieldType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2FieldCommon", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2FieldCommon", + "description": "Common fields across different project field types", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dataType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2FieldType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ProjectV2Field", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationField", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectField", + "ofType": None + } + ] + }, + { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "description": "Configurations for project fields.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ProjectV2Field", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationField", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectField", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationConnection", + "description": "The connection type for ProjectV2FieldConfiguration.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2FieldConnection", + "description": "The connection type for ProjectV2Field.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2FieldEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Field", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2FieldEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Field", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "description": "Ordering options for project v2 field connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2FieldOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2FieldOrderField", + "description": "Properties by which project v2 field connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "POSITION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2FieldType", + "description": "The type of a project field.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ASSIGNEES","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LINKED_PULL_REQUESTS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REVIEWERS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LABELS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MILESTONE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REPOSITORY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TITLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TEXT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SINGLE_SELECT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NUMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ITERATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TRACKS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TRACKED_BY","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldValue", + "description": "The values that can be used to update a field of an item inside a Project. Only 1 value can be updated at a time.", + "fields": None, + "inputFields": [ + { + "name": "text","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "number","type": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "date","type": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "singleSelectOptionId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "iterationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Filters", + "description": "Ways in which to filter lists of projects.", + "fields": None, + "inputFields": [ + { + "name": "state","type": { + "kind": "ENUM", + "name": "ProjectV2State", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2Item", + "description": "An item within a Project.", + "fields": [ + { + "name": "content","args": [], + "type": { + "kind": "UNION", + "name": "ProjectV2ItemContent", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fieldValueByName","args": [ + { + "name": "name", + "description": "The name of the field to return the field value of", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "UNION", + "name": "ProjectV2ItemFieldValue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fieldValues","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 item field values returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ItemFieldValueOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldValueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDatabaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isArchived","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "type","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2ItemType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemConnection", + "description": "The connection type for ProjectV2Item.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ItemEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "ProjectV2ItemContent", + "description": "Types that can be inside Project Items.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DraftIssue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldDateValue", + "description": "The value of a date field in a Project item.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "date","args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2ItemFieldValueCommon", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldIterationValue", + "description": "The value of an iteration field in a Project item.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "duration","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "iterationId","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startDate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "titleHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2ItemFieldValueCommon", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldLabelValue", + "description": "The value of the labels field in a Project item.", + "fields": [ + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labels","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LabelConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldMilestoneValue", + "description": "The value of a milestone field in a Project item.", + "fields": [ + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "milestone","args": [], + "type": { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldNumberValue", + "description": "The value of a number field in a Project item.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2ItemFieldValueCommon", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldPullRequestValue", + "description": "The value of a pull request field in a Project item.", + "fields": [ + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequests","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PullRequestOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequestConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldRepositoryValue", + "description": "The value of a repository field in a Project item.", + "fields": [ + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldReviewerValue", + "description": "The value of a reviewers field in a Project item.", + "fields": [ + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RequestedReviewerConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldSingleSelectValue", + "description": "The value of a single select field in a Project item.", + "fields": [ + { + "name": "color","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2SingleSelectFieldOptionColor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "descriptionHTML","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nameHTML","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "optionId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2ItemFieldValueCommon", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldTextValue", + "description": "The value of a text field in a Project item.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "text","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2ItemFieldValueCommon", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldUserValue", + "description": "The value of a user field in a Project item.", + "fields": [ + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "users","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "ProjectV2ItemFieldValue", + "description": "Project field values", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldDateValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldIterationValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldLabelValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldMilestoneValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldNumberValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldPullRequestValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldRepositoryValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldReviewerValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldSingleSelectValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldTextValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldUserValue", + "ofType": None + } + ] + }, + { + "kind": "INTERFACE", + "name": "ProjectV2ItemFieldValueCommon", + "description": "Common fields across different project field value types", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldDateValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldIterationValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldNumberValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldSingleSelectValue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldTextValue", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldValueConnection", + "description": "The connection type for ProjectV2ItemFieldValue.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldValueEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2ItemFieldValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldValueEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "ProjectV2ItemFieldValue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ItemFieldValueOrder", + "description": "Ordering options for project v2 item field value connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2ItemFieldValueOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2ItemFieldValueOrderField", + "description": "Properties by which project v2 item field value connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "POSITION","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ItemOrder", + "description": "Ordering options for project v2 item connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2ItemOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2ItemOrderField", + "description": "Properties by which project v2 item connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "POSITION","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2ItemType", + "description": "The type of a project item.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ISSUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DRAFT_ISSUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REDACTED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationField", + "description": "An iteration field inside a project.", + "fields": [ + { + "name": "configuration","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dataType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2FieldType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2FieldCommon", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldConfiguration", + "description": "Iteration field configuration for a project.", + "fields": [ + { + "name": "completedIterations","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldIteration", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "duration","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "iterations","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldIteration", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startDay","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldIteration", + "description": "Iteration field iteration settings for a project.", + "fields": [ + { + "name": "duration","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startDate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "titleHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "description": "Ways in which lists of projects can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2OrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2OrderField", + "description": "Properties by which projects can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TITLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NUMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Owner", + "description": "Represents an owner of a project.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsV2","args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "ofType": None + }, + "defaultValue": "{field: NUMBER, direction: DESC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Recent", + "description": "Recent projects for the owner.", + "fields": [ + { + "name": "recentProjects","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "ENUM", + "name": "ProjectV2Roles", + "description": "The possible roles of a collaborator on a project.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "READER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WRITER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectField", + "description": "A single select field inside a project.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dataType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2FieldType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "options","args": [ + { + "name": "names", + "description": "Filter returned options to only those matching these names, case insensitive.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectFieldOption", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2FieldCommon", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectFieldOption", + "description": "Single select field option for a configuration for a project.", + "fields": [ + { + "name": "color","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2SingleSelectFieldOptionColor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "descriptionHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nameHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2SingleSelectFieldOptionColor", + "description": "The display color of a single-select field option.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "GRAY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BLUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GREEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "YELLOW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ORANGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PINK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PURPLE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2SingleSelectFieldOptionInput", + "description": "Represents a single select field option", + "fields": None, + "inputFields": [ + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "color","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2SingleSelectFieldOptionColor", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortBy", + "description": "Represents a sort by field and direction.", + "fields": [ + { + "name": "direction","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Field", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByConnection", + "description": "The connection type for ProjectV2SortBy.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2SortByEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2SortBy", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2SortBy", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByField", + "description": "Represents a sort by field and direction.", + "fields": [ + { + "name": "direction","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "field","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByFieldConnection", + "description": "The connection type for ProjectV2SortByField.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2SortByFieldEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2SortByField", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByFieldEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2SortByField", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2State", + "description": "The possible states of a project v2.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2View", + "description": "A view within a ProjectV2.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fields","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "filter","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "groupBy","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2FieldConnection", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "The `ProjectV2View#order_by` API is deprecated in favour of the more capable `ProjectV2View#group_by_field` API. Check out the `ProjectV2View#group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC." + }, + { + "name": "groupByFields","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "layout","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2ViewLayout", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sortBy","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2SortByConnection", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "The `ProjectV2View#sort_by` API is deprecated in favour of the more capable `ProjectV2View#sort_by_fields` API. Check out the `ProjectV2View#sort_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC." + }, + { + "name": "sortByFields","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2SortByFieldConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "verticalGroupBy","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2FieldConnection", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "The `ProjectV2View#vertical_group_by` API is deprecated in favour of the more capable `ProjectV2View#vertical_group_by_fields` API. Check out the `ProjectV2View#vertical_group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC." + }, + { + "name": "verticalGroupByFields","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibleFields","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "ofType": None + }, + "defaultValue": "{field: POSITION, direction: ASC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2FieldConnection", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "The `ProjectV2View#visibleFields` API is deprecated in favour of the more capable `ProjectV2View#fields` API. Check out the `ProjectV2View#fields` API as an example for the more capable alternative. Removal on 2023-01-01 UTC." + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ViewConnection", + "description": "The connection type for ProjectV2View.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ViewEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2View", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2ViewEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2View", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2ViewLayout", + "description": "The layout of a project v2 view.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "BOARD_LAYOUT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TABLE_LAYOUT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ROADMAP_LAYOUT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ViewOrder", + "description": "Ordering options for project v2 view connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2ViewOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2ViewOrderField", + "description": "Properties by which project v2 view connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "POSITION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2Workflow", + "description": "A workflow inside a project.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2WorkflowConnection", + "description": "The connection type for ProjectV2Workflow.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2WorkflowEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Workflow", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2WorkflowEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Workflow", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2WorkflowOrder", + "description": "Ordering options for project v2 workflows connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2WorkflowsOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ProjectV2WorkflowsOrderField", + "description": "Properties by which project workflows can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NUMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PropertyTargetDefinition", + "description": "A property that must match", + "fields": [ + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "propertyValues","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "PropertyTargetDefinitionInput", + "description": "A property that must match", + "fields": None, + "inputFields": [ + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "propertyValues","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PublicKey", + "description": "A user's public key.", + "fields": [ + { + "name": "accessedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fingerprint","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isReadOnly","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "key","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PublicKeyConnection", + "description": "The connection type for PublicKey.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PublicKeyEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PublicKey", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PublicKeyEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PublicKey", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "PublishSponsorsTierInput", + "description": "Autogenerated input type of PublishSponsorsTier", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "tierId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PublishSponsorsTierPayload", + "description": "Autogenerated return type of PublishSponsorsTier", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsTier","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "description": "A repository pull request.", + "fields": [ + { + "name": "activeLockReason","args": [], + "type": { + "kind": "ENUM", + "name": "LockReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "additions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assignees","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "autoMergeRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "AutoMergeRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "baseRef","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "baseRefName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "baseRefOid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "baseRepository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "canBeRebased","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "changedFiles","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "checksResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "checksUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closingIssuesReferences","args": [ + { + "name": "userLinkedOnly", + "description": "Return only manually linked Issues", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comments","args": [ + { + "name": "orderBy", + "description": "Ordering options for issue comments returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCommentOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestCommitConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC." + }, + { + "name": "deletions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "files","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequestChangedFileConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDatabaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headRef","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headRefName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headRefOid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headRepository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "headRepositoryOwner","args": [], + "type": { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hovercard","args": [ + { + "name": "includeNotificationContexts", + "description": "Whether or not to include notification contexts", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Hovercard", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCrossRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDraft","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isInMergeQueue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMergeQueueEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isReadByViewer","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labels","args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "LabelOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LabelConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "latestOpinionatedReviews","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "writersOnly", + "description": "Only return reviews from user who have write access to the repository", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "latestReviews","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "locked","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "maintainerCanModify","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeQueue","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeQueueEntry","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueueEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeStateStatus","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MergeStateStatus", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MergeableState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "merged","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergedBy","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "milestone","args": [], + "type": { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "participants","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permalink","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "potentialMergeCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectCards","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "archivedStates", + "description": "A list of archived states to filter the cards by", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectCardArchivedState", + "ofType": None + } + }, + "defaultValue": "[ARCHIVED, NOT_ARCHIVED]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCardConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectItems","args": [ + { + "name": "includeArchived", + "description": "Include archived items.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsV2","args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "ofType": None + }, + "defaultValue": "{field: NUMBER, direction: DESC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "revertResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "revertUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewDecision","args": [], + "type": { + "kind": "ENUM", + "name": "PullRequestReviewDecision", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewRequests","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ReviewRequestConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewThreads","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewThreadConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviews","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the reviews.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "author", + "description": "Filter by author of the review.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "statusCheckRollup","args": [], + "type": { + "kind": "OBJECT", + "name": "StatusCheckRollup", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "suggestedReviewers","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SuggestedReviewer", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "timeline","args": [ + { + "name": "since", + "description": "Allows filtering timeline events by a `since` timestamp.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestTimelineConnection", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "`timeline` will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC." + }, + { + "name": "timelineItems","args": [ + { + "name": "since", + "description": "Filter timeline items by a `since` timestamp.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "skip", + "description": "Skips the first _n_ elements in the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "itemTypes", + "description": "Filter timeline items by type.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestTimelineItemsItemType", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestTimelineItemsConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "titleHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCommentsCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanApplySuggestion","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanClose","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDeleteHeadRef","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDisableAutoMerge","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanEditFiles","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanEnableAutoMerge","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMergeAsAdmin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReopen","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSubscribe","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdateBranch","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerLatestReview","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerLatestReviewRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "ReviewRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerMergeBodyText","args": [ + { + "name": "mergeType", + "description": "The merge method for the message.", + "type": { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerMergeHeadlineText","args": [ + { + "name": "mergeType", + "description": "The merge method for the message.", + "type": { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerSubscription","args": [], + "type": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Assignable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Closable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Labelable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Lockable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Owner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestBranchUpdateMethod", + "description": "The possible methods for updating a pull request's head branch with the base branch.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MERGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REBASE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestChangedFile", + "description": "A file changed in a pull request.", + "fields": [ + { + "name": "additions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "changeType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PatchStatus", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerViewedState","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "FileViewedState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestChangedFileConnection", + "description": "The connection type for PullRequestChangedFile.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestChangedFileEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestChangedFile", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestChangedFileEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestChangedFile", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommit", + "description": "Represents a Git commit part of a pull request.", + "fields": [ + { + "name": "commit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitCommentThread", + "description": "Represents a commit comment thread part of a pull request.", + "fields": [ + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "position","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitConnection", + "description": "The connection type for PullRequestCommit.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestCommitEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestCommit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestCommit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestConnection", + "description": "The connection type for PullRequest.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestContributionsByRepository", + "description": "This aggregates pull requests opened by a user within one repository.", + "fields": [ + { + "name": "contributions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "ofType": None + }, + "defaultValue": "{direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "description": "Represents available types of methods to use when merging a pull request.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MERGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SQUASH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REBASE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "PullRequestOrder", + "description": "Ways in which lists of issues can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestOrderField", + "description": "Properties by which pull_requests connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestParameters", + "description": "Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.", + "fields": [ + { + "name": "dismissStaleReviewsOnPush","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requireCodeOwnerReview","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requireLastPushApproval","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiredApprovingReviewCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiredReviewThreadResolution","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "PullRequestParametersInput", + "description": "Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.", + "fields": None, + "inputFields": [ + { + "name": "dismissStaleReviewsOnPush","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "requireCodeOwnerReview","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "requireLastPushApproval","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "requiredApprovingReviewCount","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "requiredReviewThreadResolution","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "description": "A review object for a given pull request.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorCanPushToRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC." + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDatabaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMinimized","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizedReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "onBehalfOf","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "submittedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMinimize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Minimizable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "description": "A review comment associated with a given repository pull request.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC." + }, + { + "name": "diffHunk","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "draftedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDatabaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMinimized","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "line","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "minimizedReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "originalCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "originalLine","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "originalPosition","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "We are phasing out diff-relative positioning for PR comments Removal on 2023-10-01 UTC." + }, + { + "name": "originalStartLine","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "outdated","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "position","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "We are phasing out diff-relative positioning for PR comments Use the `line` and `startLine` fields instead, which are file line numbers instead of diff line numbers Removal on 2023-10-01 UTC." + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReview","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "replyTo","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startLine","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewCommentState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subjectType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanMinimize","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Minimizable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewCommentConnection", + "description": "The connection type for PullRequestReviewComment.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewCommentEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestReviewCommentState", + "description": "The possible states of a pull request review comment.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBMITTED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewConnection", + "description": "The connection type for PullRequestReview.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewContributionsByRepository", + "description": "This aggregates pull request reviews made by a user within one repository.", + "fields": [ + { + "name": "contributions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "ofType": None + }, + "defaultValue": "{direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestReviewDecision", + "description": "The review status of a pull request.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CHANGES_REQUESTED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "APPROVED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REVIEW_REQUIRED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestReviewEvent", + "description": "The possible events to perform on a pull request review.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "COMMENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "APPROVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REQUEST_CHANGES","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISMISS","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestReviewState", + "description": "The possible states of a pull request review.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMENTED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "APPROVED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CHANGES_REQUESTED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISMISSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "description": "A threaded list of comments for a given pull request.", + "fields": [ + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "skip", + "description": "Skips the first _n_ elements in the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "diffSide","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DiffSide", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCollapsed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isOutdated","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isResolved","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "line","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "originalLine","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "originalStartLine","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resolvedBy","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startDiffSide","args": [], + "type": { + "kind": "ENUM", + "name": "DiffSide", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startLine","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subjectType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReply","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanResolve","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUnresolve","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThreadConnection", + "description": "Review comment threads for a pull request review.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewThreadEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThreadEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "description": "The possible subject types of a pull request review comment.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LINE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FILE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestRevisionMarker", + "description": "Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastSeenCommit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestState", + "description": "The possible states of a pull request.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MERGED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestTemplate", + "description": "A repository pull request template.", + "fields": [ + { + "name": "body","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "filename","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestThread", + "description": "A threaded list of comments for a given pull request.", + "fields": [ + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "skip", + "description": "Skips the first _n_ elements in the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "diffSide","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DiffSide", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCollapsed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isOutdated","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isResolved","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "line","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resolvedBy","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startDiffSide","args": [], + "type": { + "kind": "ENUM", + "name": "DiffSide", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "startLine","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subjectType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReply","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanResolve","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUnresolve","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestTimelineConnection", + "description": "The connection type for PullRequestTimelineItem.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestTimelineItemEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "PullRequestTimelineItem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "PullRequestTimelineItem", + "description": "An item in a pull request timeline", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AssignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BaseRefDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BaseRefForcePushedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ClosedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommitCommentThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CrossReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DemilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeployedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeploymentEnvironmentChangedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefForcePushedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefRestoredEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MergedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RenamedTitleEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReopenedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewDismissedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestRemovedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnassignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnsubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UserBlockedEvent", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "PullRequestTimelineItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "PullRequestTimelineItem", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "PullRequestTimelineItems", + "description": "An item in a pull request timeline", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddedToMergeQueueEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AddedToProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AssignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutoMergeDisabledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutoMergeEnabledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutoRebaseEnabledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutoSquashEnabledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutomaticBaseChangeFailedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "AutomaticBaseChangeSucceededEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BaseRefChangedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BaseRefDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "BaseRefForcePushedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ClosedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommentDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConnectedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertToDraftEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertedNoteToIssueEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertedToDiscussionEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CrossReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DemilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeployedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DeploymentEnvironmentChangedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DisconnectedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefDeletedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefForcePushedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "HeadRefRestoredEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "LockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MarkedAsDuplicateEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MentionedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MergedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MilestonedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MovedColumnsInProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PinnedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitCommentThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestRevisionMarker", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReadyForReviewEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RemovedFromMergeQueueEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RemovedFromProjectEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RenamedTitleEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReopenedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewDismissedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestRemovedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "SubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TransferredEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnassignedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlabeledEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnlockedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnmarkedAsDuplicateEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnpinnedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UnsubscribedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UserBlockedEvent", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "PullRequestTimelineItemsConnection", + "description": "The connection type for PullRequestTimelineItems.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestTimelineItemsEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "filteredCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "PullRequestTimelineItems", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PullRequestTimelineItemsEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "PullRequestTimelineItems", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestTimelineItemsItemType", + "description": "The possible item types found in a timeline.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PULL_REQUEST_COMMIT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST_COMMIT_COMMENT_THREAD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST_REVIEW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST_REVIEW_THREAD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST_REVISION_MARKER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTOMATIC_BASE_CHANGE_FAILED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTOMATIC_BASE_CHANGE_SUCCEEDED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTO_MERGE_DISABLED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTO_MERGE_ENABLED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTO_REBASE_ENABLED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTO_SQUASH_ENABLED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BASE_REF_CHANGED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BASE_REF_FORCE_PUSHED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BASE_REF_DELETED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DEPLOYED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DEPLOYMENT_ENVIRONMENT_CHANGED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HEAD_REF_DELETED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HEAD_REF_FORCE_PUSHED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HEAD_REF_RESTORED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MERGED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REVIEW_DISMISSED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REVIEW_REQUESTED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REVIEW_REQUEST_REMOVED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "READY_FOR_REVIEW_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONVERT_TO_DRAFT_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADDED_TO_MERGE_QUEUE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REMOVED_FROM_MERGE_QUEUE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ISSUE_COMMENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CROSS_REFERENCED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ADDED_TO_PROJECT_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ASSIGNED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMENT_DELETED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONNECTED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONVERTED_NOTE_TO_ISSUE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONVERTED_TO_DISCUSSION_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DEMILESTONED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISCONNECTED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LABELED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LOCKED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MARKED_AS_DUPLICATE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MENTIONED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MILESTONED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MOVED_COLUMNS_IN_PROJECT_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PINNED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REFERENCED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REMOVED_FROM_PROJECT_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RENAMED_TITLE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REOPENED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIBED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TRANSFERRED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNASSIGNED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNLABELED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNLOCKED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "USER_BLOCKED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNMARKED_AS_DUPLICATE_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNPINNED_EVENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNSUBSCRIBED_EVENT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "PullRequestUpdateState", + "description": "The possible target states when updating a pull request.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Push", + "description": "A Git push.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nextSha","args": [], + "type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permalink","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "previousSha","args": [], + "type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pusher","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PushAllowance", + "description": "A team, user, or app who has the ability to push to a protected branch.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "PushAllowanceActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "branchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "PushAllowanceActor", + "description": "Types that can be an actor.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "PushAllowanceConnection", + "description": "The connection type for PushAllowance.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PushAllowanceEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PushAllowance", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "PushAllowanceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "PushAllowance", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Query", + "description": "The query root of GitHub's GraphQL interface.", + "fields": [ + { + "name": "codeOfConduct","args": [ + { + "name": "key", + "description": "The code of conduct's key", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "CodeOfConduct", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "codesOfConduct","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CodeOfConduct", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [ + { + "name": "slug", + "description": "The enterprise URL slug.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "invitationToken", + "description": "The enterprise invitation token.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseAdministratorInvitation","args": [ + { + "name": "userLogin", + "description": "The login of the user invited to join the business.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "enterpriseSlug", + "description": "The slug of the enterprise the user was invited to join.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "role", + "description": "The role for the business member invitation.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseAdministratorInvitationByToken","args": [ + { + "name": "invitationToken", + "description": "The invitation token sent with the invitation email.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "license","args": [ + { + "name": "key", + "description": "The license's downcased SPDX ID", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "License", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "licenses","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "License", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "marketplaceCategories","args": [ + { + "name": "includeCategories", + "description": "Return only the specified categories.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "excludeEmpty", + "description": "Exclude categories with no listings.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "excludeSubcategories", + "description": "Returns top level categories only, excluding any subcategories.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MarketplaceCategory", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "marketplaceCategory","args": [ + { + "name": "slug", + "description": "The URL slug of the category.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "useTopicAliases", + "description": "Also check topic aliases for the category slug", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MarketplaceCategory", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "marketplaceListing","args": [ + { + "name": "slug", + "description": "Select the listing that matches this slug. It's the short name of the listing used in its URL.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MarketplaceListing", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "marketplaceListings","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "categorySlug", + "description": "Select only listings with the given category.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "useTopicAliases", + "description": "Also check topic aliases for the category slug", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "viewerCanAdmin", + "description": "Select listings to which user has admin access. If omitted, listings visible to the\\nviewer are returned.\\n", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "adminId", + "description": "Select listings that can be administered by the specified user.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId", + "description": "Select listings for products owned by the specified organization.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "allStates", + "description": "Select listings visible to the viewer even if they are not approved. If omitted or\\nfalse, only approved listings will be returned.\\n", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "slugs", + "description": "Select the listings with these slugs, if they are visible to the viewer.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "primaryCategoryOnly", + "description": "Select only listings where the primary category matches the given category slug.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "withFreeTrialsOnly", + "description": "Select only listings that offer a free trial.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MarketplaceListingConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "meta","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GitHubMetadata", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [ + { + "name": "id", + "description": "ID of the object.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [ + { + "name": "ids", + "description": "The list of node IDs.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [ + { + "name": "login", + "description": "The organization's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rateLimit","args": [ + { + "name": "dryRun", + "description": "If true, calculate the cost for the query without evaluating it", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "OBJECT", + "name": "RateLimit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "relay","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Query", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [ + { + "name": "owner", + "description": "The login field of a user or organization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name", + "description": "The name of the repository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "followRenames", + "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryOwner","args": [ + { + "name": "login", + "description": "The username to lookup the owner by.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resource","args": [ + { + "name": "url", + "description": "The URL.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "search","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "type", + "description": "The types of search items to search within.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SearchType", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SearchResultItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "securityAdvisories","args": [ + { + "name": "orderBy", + "description": "Ordering options for the returned topics.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SecurityAdvisoryOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + }, + { + "name": "identifier", + "description": "Filter advisories by identifier, e.g. GHSA or CVE.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SecurityAdvisoryIdentifierFilter", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "publishedSince", + "description": "Filter advisories to those published since a time in the past.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "updatedSince", + "description": "Filter advisories to those updated since a time in the past.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "classifications", + "description": "A list of classifications to filter advisories by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "securityAdvisory","args": [ + { + "name": "ghsaId", + "description": "GitHub Security Advisory ID.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "SecurityAdvisory", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "securityVulnerabilities","args": [ + { + "name": "orderBy", + "description": "Ordering options for the returned topics.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SecurityVulnerabilityOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + }, + { + "name": "ecosystem", + "description": "An ecosystem to filter vulnerabilities by.", + "type": { + "kind": "ENUM", + "name": "SecurityAdvisoryEcosystem", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "package", + "description": "A package name to filter vulnerabilities by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "severities", + "description": "A list of severities to filter vulnerabilities by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisorySeverity", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "classifications", + "description": "A list of advisory classifications to filter vulnerabilities by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityVulnerabilityConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorables","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for users and organizations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorableOrder", + "ofType": None + }, + "defaultValue": "{field: LOGIN, direction: ASC}" + }, + { + "name": "onlyDependencies", + "description": "Whether only sponsorables who own the viewer's dependencies will be returned. Must be authenticated to use. Can check an organization instead for their dependencies owned by sponsorables by passing orgLoginForDependencies.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orgLoginForDependencies", + "description": "Optional organization username for whose dependencies should be checked. Used when onlyDependencies = true. Omit to check your own dependencies. If you are not an administrator of the organization, only dependencies from its public repositories will be considered.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "dependencyEcosystem", + "description": "Optional filter for which dependencies should be checked for sponsorable owners. Only sponsorable owners of dependencies in this ecosystem will be included. Used when onlyDependencies = true.\\n\\n**Upcoming Change on 2022-07-01 UTC**\\n**Description:** `dependencyEcosystem` will be removed. Use the ecosystem argument instead.\\n**Reason:** The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.\\n", + "type": { + "kind": "ENUM", + "name": "SecurityAdvisoryEcosystem", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ecosystem", + "description": "Optional filter for which dependencies should be checked for sponsorable owners. Only sponsorable owners of dependencies in this ecosystem will be included. Used when onlyDependencies = true.", + "type": { + "kind": "ENUM", + "name": "DependencyGraphEcosystem", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorableItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topic","args": [ + { + "name": "name", + "description": "The topic's name.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [ + { + "name": "login", + "description": "The user's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RateLimit", + "description": "Represents the client's rate limit.", + "fields": [ + { + "name": "cost","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "limit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodeCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "remaining","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resetAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "used","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "description": "Represents a subject that can be reacted on.", + "fields": [ + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Release", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ReactingUserConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactingUserEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReactingUserEdge", + "description": "Represents a user that's made a reaction.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Reaction", + "description": "An emoji reaction to a particular piece of content.", + "fields": [ + { + "name": "content","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReactionConnection", + "description": "A list of reactions that have been left on the subject.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Reaction", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasReacted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ReactionContent", + "description": "Emojis that can be attached to Issues, Pull Requests and Comments.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "THUMBS_UP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "THUMBS_DOWN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LAUGH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HOORAY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONFUSED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HEART","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ROCKET","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EYES","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReactionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Reaction", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReactionGroup", + "description": "A group of emoji reactions to a particular piece of content.", + "fields": [ + { + "name": "content","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactors","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "users","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactingUserConnection", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "Reactors can now be mannequins, bots, and organizations. Use the `reactors` field instead. Removal on 2021-10-01 UTC." + }, + { + "name": "viewerHasReacted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "description": "Ways in which lists of reactions can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ReactionOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ReactionOrderField", + "description": "A list of fields that reactions can be ordered by.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "Reactor", + "description": "Types that can be assigned to reactions.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Bot", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ReactorConnection", + "description": "The connection type for Reactor.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactorEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "Reactor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReactorEdge", + "description": "Represents an author of a reaction.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "Reactor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReadyForReviewEvent", + "description": "Represents a 'ready_for_review' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Ref", + "description": "Represents a Git reference.", + "fields": [ + { + "name": "associatedPullRequests","args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "branchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "compare","args": [ + { + "name": "headRef", + "description": "The head ref to compare against.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Comparison", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "prefix","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "refUpdateRule","args": [], + "type": { + "kind": "OBJECT", + "name": "RefUpdateRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rules","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repository rules.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "target","args": [], + "type": { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RefConnection", + "description": "The connection type for Ref.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RefEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RefEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RefNameConditionTarget", + "description": "Parameters to be used for the ref_name condition", + "fields": [ + { + "name": "exclude","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "include","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RefNameConditionTargetInput", + "description": "Parameters to be used for the ref_name condition", + "fields": None, + "inputFields": [ + { + "name": "exclude","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "include","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RefOrder", + "description": "Ways in which lists of git refs can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RefOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RefOrderField", + "description": "Properties by which ref connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TAG_COMMIT_DATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ALPHABETICAL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RefUpdate", + "description": "A ref update", + "fields": None, + "inputFields": [ + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitRefname", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "afterOid","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "beforeOid","type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "force","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RefUpdateRule", + "description": "Branch protection rules that are enforced on the viewer.", + "fields": [ + { + "name": "allowsDeletions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "allowsForcePushes","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blocksCreations","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pattern","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiredApprovingReviewCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiredStatusCheckContexts","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresCodeOwnerReviews","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresConversationResolution","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresLinearHistory","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requiresSignatures","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerAllowedToDismissReviews","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanPush","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReferencedEvent", + "description": "Represents a 'referenced' event on a given `ReferencedSubject`.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCrossRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDirectReference","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "ReferencedSubject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "ReferencedSubject", + "description": "Any referencable object", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesInput", + "description": "Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesPayload", + "description": "Autogenerated return type of RegenerateEnterpriseIdentityProviderRecoveryCodes", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "identityProvider","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseIdentityProvider", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RegenerateVerifiableDomainTokenInput", + "description": "Autogenerated input type of RegenerateVerifiableDomainToken", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RegenerateVerifiableDomainTokenPayload", + "description": "Autogenerated return type of RegenerateVerifiableDomainToken", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "verificationToken","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RejectDeploymentsInput", + "description": "Autogenerated input type of RejectDeployments", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "workflowRunId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "environmentIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "comment","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RejectDeploymentsPayload", + "description": "Autogenerated return type of RejectDeployments", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployments","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Release", + "description": "A release contains the content for a release.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "descriptionHTML","args": [], + "type": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDraft","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isLatest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPrerelease","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mentions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "releaseAssets","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "name", + "description": "A name to filter the assets by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReleaseAssetConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "shortDescriptionHTML","args": [ + { + "name": "limit", + "description": "How many characters to return.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "200" + } + ], + "type": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tag","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tagCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tagName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReleaseAsset", + "description": "A release asset contains the content for a release asset.", + "fields": [ + { + "name": "contentType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "downloadCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "downloadUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "release","args": [], + "type": { + "kind": "OBJECT", + "name": "Release", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "size","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "uploadedBy","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReleaseAssetConnection", + "description": "The connection type for ReleaseAsset.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReleaseAssetEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReleaseAsset", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReleaseAssetEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ReleaseAsset", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReleaseConnection", + "description": "The connection type for Release.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReleaseEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Release", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReleaseEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Release", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ReleaseOrder", + "description": "Ways in which lists of releases can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ReleaseOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ReleaseOrderField", + "description": "Properties by which release connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveAssigneesFromAssignableInput", + "description": "Autogenerated input type of RemoveAssigneesFromAssignable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "assignableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "assigneeIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveAssigneesFromAssignablePayload", + "description": "Autogenerated return type of RemoveAssigneesFromAssignable", + "fields": [ + { + "name": "assignable","args": [], + "type": { + "kind": "INTERFACE", + "name": "Assignable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseAdminInput", + "description": "Autogenerated input type of RemoveEnterpriseAdmin", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "login","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseAdminPayload", + "description": "Autogenerated return type of RemoveEnterpriseAdmin", + "fields": [ + { + "name": "admin","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseIdentityProviderInput", + "description": "Autogenerated input type of RemoveEnterpriseIdentityProvider", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseIdentityProviderPayload", + "description": "Autogenerated return type of RemoveEnterpriseIdentityProvider", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "identityProvider","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseIdentityProvider", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseMemberInput", + "description": "Autogenerated input type of RemoveEnterpriseMember", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "userId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseMemberPayload", + "description": "Autogenerated return type of RemoveEnterpriseMember", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseOrganizationInput", + "description": "Autogenerated input type of RemoveEnterpriseOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseOrganizationPayload", + "description": "Autogenerated return type of RemoveEnterpriseOrganization", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseSupportEntitlementInput", + "description": "Autogenerated input type of RemoveEnterpriseSupportEntitlement", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "login","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseSupportEntitlementPayload", + "description": "Autogenerated return type of RemoveEnterpriseSupportEntitlement", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveLabelsFromLabelableInput", + "description": "Autogenerated input type of RemoveLabelsFromLabelable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labelableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "labelIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveLabelsFromLabelablePayload", + "description": "Autogenerated return type of RemoveLabelsFromLabelable", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labelable","args": [], + "type": { + "kind": "INTERFACE", + "name": "Labelable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveOutsideCollaboratorInput", + "description": "Autogenerated input type of RemoveOutsideCollaborator", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveOutsideCollaboratorPayload", + "description": "Autogenerated return type of RemoveOutsideCollaborator", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "removedUser","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveReactionInput", + "description": "Autogenerated input type of RemoveReaction", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "subjectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "content","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveReactionPayload", + "description": "Autogenerated return type of RemoveReaction", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reaction","args": [], + "type": { + "kind": "OBJECT", + "name": "Reaction", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStarInput", + "description": "Autogenerated input type of RemoveStar", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "starrableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveStarPayload", + "description": "Autogenerated return type of RemoveStar", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "starrable","args": [], + "type": { + "kind": "INTERFACE", + "name": "Starrable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveUpvoteInput", + "description": "Autogenerated input type of RemoveUpvote", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "subjectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemoveUpvotePayload", + "description": "Autogenerated return type of RemoveUpvote", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "INTERFACE", + "name": "Votable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemovedFromMergeQueueEvent", + "description": "Represents a 'removed_from_merge_queue' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "beforeCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enqueuer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeQueue","args": [], + "type": { + "kind": "OBJECT", + "name": "MergeQueue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RemovedFromProjectEvent", + "description": "Represents a 'removed_from_project' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectColumnName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RenamedTitleEvent", + "description": "Represents a 'renamed' event on a given issue or pull request", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "currentTitle","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "previousTitle","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "RenamedTitleSubject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "RenamedTitleSubject", + "description": "An object which has a renamable title", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ReopenDiscussionInput", + "description": "Autogenerated input type of ReopenDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "discussionId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReopenDiscussionPayload", + "description": "Autogenerated return type of ReopenDiscussion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ReopenIssueInput", + "description": "Autogenerated input type of ReopenIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "issueId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReopenIssuePayload", + "description": "Autogenerated return type of ReopenIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ReopenPullRequestInput", + "description": "Autogenerated input type of ReopenPullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReopenPullRequestPayload", + "description": "Autogenerated return type of ReopenPullRequest", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReopenedEvent", + "description": "Represents a 'reopened' event on any `Closable`.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Closable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stateReason","args": [], + "type": { + "kind": "ENUM", + "name": "IssueStateReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoAccessAuditEntry", + "description": "Audit log entry for a repo.access event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "ENUM", + "name": "RepoAccessAuditEntryVisibility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepoAccessAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoAddMemberAuditEntry", + "description": "Audit log entry for a repo.add_member event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "ENUM", + "name": "RepoAddMemberAuditEntryVisibility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepoAddMemberAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoAddTopicAuditEntry", + "description": "Audit log entry for a repo.add_topic event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topic","args": [], + "type": { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topicName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "TopicAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoArchivedAuditEntry", + "description": "Audit log entry for a repo.archived event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "ENUM", + "name": "RepoArchivedAuditEntryVisibility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepoArchivedAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoChangeMergeSettingAuditEntry", + "description": "Audit log entry for a repo.change_merge_setting event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isEnabled","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeType","args": [], + "type": { + "kind": "ENUM", + "name": "RepoChangeMergeSettingAuditEntryMergeType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepoChangeMergeSettingAuditEntryMergeType", + "description": "The merge options available for pull requests to this repository.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MERGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REBASE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SQUASH","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", + "description": "Audit log entry for a repo.config.disable_anonymous_git_access event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", + "description": "Audit log entry for a repo.config.disable_collaborators_only event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableContributorsOnlyAuditEntry", + "description": "Audit log entry for a repo.config.disable_contributors_only event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", + "description": "Audit log entry for a repo.config.disable_sockpuppet_disallowed event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", + "description": "Audit log entry for a repo.config.enable_anonymous_git_access event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", + "description": "Audit log entry for a repo.config.enable_collaborators_only event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableContributorsOnlyAuditEntry", + "description": "Audit log entry for a repo.config.enable_contributors_only event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", + "description": "Audit log entry for a repo.config.enable_sockpuppet_disallowed event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigLockAnonymousGitAccessAuditEntry", + "description": "Audit log entry for a repo.config.lock_anonymous_git_access event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", + "description": "Audit log entry for a repo.config.unlock_anonymous_git_access event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoCreateAuditEntry", + "description": "Audit log entry for a repo.create event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "forkParentName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "forkSourceName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "ENUM", + "name": "RepoCreateAuditEntryVisibility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepoCreateAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoDestroyAuditEntry", + "description": "Audit log entry for a repo.destroy event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "ENUM", + "name": "RepoDestroyAuditEntryVisibility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepoDestroyAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveMemberAuditEntry", + "description": "Audit log entry for a repo.remove_member event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "ENUM", + "name": "RepoRemoveMemberAuditEntryVisibility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepoRemoveMemberAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveTopicAuditEntry", + "description": "Audit log entry for a repo.remove_topic event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topic","args": [], + "type": { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topicName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "TopicAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ReportedContentClassifiers", + "description": "The reasons a piece of content can be reported or minimized.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "SPAM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ABUSE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OFF_TOPIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OUTDATED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DUPLICATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RESOLVED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "description": "A repository contains the content for a project.", + "fields": [ + { + "name": "allowUpdateBranch","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "archivedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assignableUsers","args": [ + { + "name": "query", + "description": "Filters users with query on user name and login.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "autoMergeAllowed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "branchProtectionRules","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BranchProtectionRuleConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "codeOfConduct","args": [], + "type": { + "kind": "OBJECT", + "name": "CodeOfConduct", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "codeowners","args": [ + { + "name": "refName", + "description": "The ref name used to return the associated `CODEOWNERS` file.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryCodeowners", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "collaborators","args": [ + { + "name": "affiliation", + "description": "Collaborators affiliation level with a repository.", + "type": { + "kind": "ENUM", + "name": "CollaboratorAffiliation", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "login", + "description": "The login of one specific collaborator.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "Filters users with query on user name and login", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryCollaboratorConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitComments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contactLinks","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryContactLink", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contributingGuidelines","args": [], + "type": { + "kind": "OBJECT", + "name": "ContributingGuidelines", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "defaultBranchRef","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deleteBranchOnMerge","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dependencyGraphManifests","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "withDependencies", + "description": "Flag to scope to only manifests with dependencies", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "dependenciesFirst", + "description": "Number of dependencies to fetch", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "dependenciesAfter", + "description": "Cursor to paginate dependencies", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DependencyGraphManifestConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployKeys","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeployKeyConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deployments","args": [ + { + "name": "environments", + "description": "Environments to list deployments for", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for deployments returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeploymentOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "descriptionHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [ + { + "name": "number", + "description": "The number for the discussion to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussionCategories","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "filterByAssignable", + "description": "Filter by categories that are assignable by the viewer.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCategoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussionCategory","args": [ + { + "name": "slug", + "description": "The slug of the discussion category to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscussionCategory", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "categoryId", + "description": "Only include discussions that belong to the category with this ID.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "states", + "description": "A list of states to filter the discussions by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DiscussionState", + "ofType": None + } + } + }, + "defaultValue": "[]" + }, + { + "name": "orderBy", + "description": "Ordering options for discussions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DiscussionOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + }, + { + "name": "answered", + "description": "Only show answered or unanswered discussions", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "diskUsage","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environment","args": [ + { + "name": "name", + "description": "The name of the environment to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Environment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the environments", + "type": { + "kind": "INPUT_OBJECT", + "name": "Environments", + "ofType": None + }, + "defaultValue": "{field: NAME, direction: ASC}" + }, + { + "name": "names", + "description": "The names of the environments to be returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": "[]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnvironmentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "forkCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "forkingAllowed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "forks","args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": "[OWNER, COLLABORATOR]" + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fundingLinks","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "FundingLink", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasDiscussionsEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasIssuesEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasProjectsEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasSponsorshipsEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasVulnerabilityAlertsEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasWikiEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "homepageUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "interactionAbility","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryInteractionAbility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isArchived","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isBlankIssuesEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDisabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isEmpty","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isFork","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isInOrganization","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isLocked","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMirror","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPrivate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSecurityPolicyEnabled","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isTemplate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isUserConfigurationRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [ + { + "name": "number", + "description": "The number for the issue to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issueOrPullRequest","args": [ + { + "name": "number", + "description": "The number for the issue to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "UNION", + "name": "IssueOrPullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issueTemplates","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueTemplate", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issues","args": [ + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the issues by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "filterBy", + "description": "Filtering options for issues returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilters", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "label","args": [ + { + "name": "name", + "description": "Label name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Label", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labels","args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "LabelOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "If provided, searches labels by name and description.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LabelConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "languages","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "LanguageOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "LanguageConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "latestRelease","args": [], + "type": { + "kind": "OBJECT", + "name": "Release", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "licenseInfo","args": [], + "type": { + "kind": "OBJECT", + "name": "License", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockReason","args": [], + "type": { + "kind": "ENUM", + "name": "RepositoryLockReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mentionableUsers","args": [ + { + "name": "query", + "description": "Filters users with query on user name and login", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeCommitAllowed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeCommitMessage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MergeCommitMessage", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeCommitTitle","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MergeCommitTitle", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mergeQueue","args": [ + { + "name": "branch", + "description": "The name of the branch to get the merge queue for. Case sensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MergeQueue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "milestone","args": [ + { + "name": "number", + "description": "The number for the milestone to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "milestones","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "states", + "description": "Filter by the state of the milestones.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MilestoneState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for milestones.", + "type": { + "kind": "INPUT_OBJECT", + "name": "MilestoneOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "Filters milestones with a query on the title", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "MilestoneConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mirrorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nameWithOwner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "object","args": [ + { + "name": "oid", + "description": "The Git object ID", + "type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "expression", + "description": "A Git revision expression suitable for rev-parse", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "openGraphImageUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "packages","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "names", + "description": "Find packages by their names.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "description": "Find packages in a repository by ID.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "packageType", + "description": "Filter registry package by type.", + "type": { + "kind": "ENUM", + "name": "PackageType", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PackageOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parent","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedDiscussions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnedDiscussionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedIssues","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PinnedIssueConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "planFeatures","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryPlanFeatures", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "primaryLanguage","args": [], + "type": { + "kind": "OBJECT", + "name": "Language", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [ + { + "name": "number", + "description": "The project number to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [ + { + "name": "number", + "description": "The Project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projects","args": [ + { + "name": "orderBy", + "description": "Ordering options for projects returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "search", + "description": "Query to search projects by, currently only searching by name.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the projects by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsV2","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "A project to search for linked to the repo.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "ofType": None + }, + "defaultValue": "{field: NUMBER, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [ + { + "name": "number", + "description": "The number for the pull request to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestTemplates","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestTemplate", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequests","args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pushedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rebaseMergeAllowed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "recentProjects","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [ + { + "name": "qualifiedName", + "description": "The ref to retrieve. Fully qualified matches are checked in order (`refs/heads/master`) before falling back onto checks for short name matches (`master`).", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "refs","args": [ + { + "name": "query", + "description": "Filters refs with query on name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "refPrefix", + "description": "A ref name prefix like `refs/heads/`, `refs/tags/`, etc.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction", + "description": "DEPRECATED: use orderBy. The ordering direction.", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for refs returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RefOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RefConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "release","args": [ + { + "name": "tagName", + "description": "The name of the Tag the Release was created from", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Release", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "releases","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReleaseOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReleaseConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryTopics","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryTopicConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ruleset","args": [ + { + "name": "includeParents", + "description": "Include rulesets configured at higher levels that apply to this repository", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "databaseId", + "description": "The ID of the ruleset to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rulesets","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "includeParents", + "description": "Return rulesets configured at higher levels that apply to this repository", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryRulesetConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "securityPolicyUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "shortDescriptionHTML","args": [ + { + "name": "limit", + "description": "How many characters to return.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "200" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "squashMergeAllowed","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "squashMergeCommitMessage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SquashMergeCommitMessage", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "squashMergeCommitTitle","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SquashMergeCommitTitle", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "squashPrTitleUsedAsDefault","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "`squashPrTitleUsedAsDefault` will be removed. Use `Repository.squashMergeCommitTitle` instead. Removal on 2023-04-01 UTC." + }, + { + "name": "sshUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitSSHRemote", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stargazerCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stargazers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "StarOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StargazerConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "submodules","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SubmoduleConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tempCloneToken","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "templateRepository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "usesCustomOpenGraphImage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanAdminister","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanCreateProjects","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSubscribe","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdateTopics","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDefaultCommitEmail","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDefaultMergeMethod","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasStarred","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerPermission","args": [], + "type": { + "kind": "ENUM", + "name": "RepositoryPermission", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerPossibleCommitEmails","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerSubscription","args": [], + "type": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "vulnerabilityAlert","args": [ + { + "name": "number", + "description": "The number for the vulnerability alert to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlert", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "vulnerabilityAlerts","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "states", + "description": "Filter by the state of the alert", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "dependencyScopes", + "description": "Filter by the scope of the alert's dependency", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertDependencyScope", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlertConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "watchers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "webCommitSignoffRequired","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "PackageOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Recent", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryInfo", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Starrable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "description": "The affiliation of a user to a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OWNER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COLLABORATOR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ORGANIZATION_MEMBER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "description": "Metadata for an audit entry with action repo.*", + "fields": [ + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingDisableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingEnableAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoAddTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoArchivedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoChangeMergeSettingAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableContributorsOnlyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigLockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoCreateAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoDestroyAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddRepositoryAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveRepositoryAuditEntry", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "RepositoryCodeowners", + "description": "Information extracted from a repository's `CODEOWNERS` file.", + "fields": [ + { + "name": "errors","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryCodeownersError", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryCodeownersError", + "description": "An error in a `CODEOWNERS` file.", + "fields": [ + { + "name": "column","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "kind","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "line","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "source","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "suggestion","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryCollaboratorConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryCollaboratorEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryCollaboratorEdge", + "description": "Represents a user who is a collaborator of a repository.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permission","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryPermission", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permissionSources","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PermissionSource", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryConnection", + "description": "A list of repositories owned by the subject.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalDiskUsage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryContactLink", + "description": "A repository contact link.", + "fields": [ + { + "name": "about","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryContributionType", + "description": "The reason a repository is listed as 'contributed'.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "COMMIT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ISSUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REPOSITORY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST_REVIEW","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryDiscussionAuthor", + "description": "Represents an author of discussions in repositories.", + "fields": [ + { + "name": "repositoryDiscussions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for discussions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DiscussionOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + }, + { + "name": "repositoryId", + "description": "Filter discussions to only those in a specific repository.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "answered", + "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "states", + "description": "A list of states to filter the discussions by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DiscussionState", + "ofType": None + } + } + }, + "defaultValue": "[]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "INTERFACE", + "name": "RepositoryDiscussionCommentAuthor", + "description": "Represents an author of discussion comments in repositories.", + "fields": [ + { + "name": "repositoryDiscussionComments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "description": "Filter discussion comments to only those in a specific repository.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "onlyAnswers", + "description": "Filter discussion comments to only those that were marked as the answer", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "RepositoryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryIdConditionTarget", + "description": "Parameters to be used for the repository_id condition", + "fields": [ + { + "name": "repositoryIds","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryIdConditionTargetInput", + "description": "Parameters to be used for the repository_id condition", + "fields": None, + "inputFields": [ + { + "name": "repositoryIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryInfo", + "description": "A subset of repository info.", + "fields": [ + { + "name": "archivedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "descriptionHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "forkCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasDiscussionsEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasIssuesEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasProjectsEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasSponsorshipsEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasWikiEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "homepageUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isArchived","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isFork","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isInOrganization","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isLocked","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isMirror","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPrivate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isTemplate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "licenseInfo","args": [], + "type": { + "kind": "OBJECT", + "name": "License", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockReason","args": [], + "type": { + "kind": "ENUM", + "name": "RepositoryLockReason", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mirrorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nameWithOwner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "openGraphImageUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pushedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "shortDescriptionHTML","args": [ + { + "name": "limit", + "description": "How many characters to return.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "200" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "usesCustomOpenGraphImage","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "visibility","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "RepositoryInteractionAbility", + "description": "Repository interaction limit that applies to this object.", + "fields": [ + { + "name": "expiresAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "limit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryInteractionLimit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "origin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryInteractionLimitOrigin", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryInteractionLimit", + "description": "A repository interaction limit.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "EXISTING_USERS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CONTRIBUTORS_ONLY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COLLABORATORS_ONLY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NO_LIMIT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryInteractionLimitExpiry", + "description": "The length for a repository interaction limit to be enabled for.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ONE_DAY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "THREE_DAYS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ONE_WEEK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ONE_MONTH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SIX_MONTHS","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryInteractionLimitOrigin", + "description": "Indicates where an interaction limit is configured.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "REPOSITORY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ORGANIZATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "USER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryInvitation", + "description": "An invitation for a user to be added to a repository.", + "fields": [ + { + "name": "email","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitee","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "inviter","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permalink","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permission","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryPermission", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "INTERFACE", + "name": "RepositoryInfo", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryInvitationConnection", + "description": "A list of repository invitations.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryInvitationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryInvitation", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryInvitationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryInvitation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryInvitationOrder", + "description": "Ordering options for repository invitation connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryInvitationOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryInvitationOrderField", + "description": "Properties by which repository invitation connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryLockReason", + "description": "The possible reasons a given repository could be in a locked state.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MOVING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BILLING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RENAME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MIGRATING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TRADE_RESTRICTION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TRANSFERRING_OWNERSHIP","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryMigration", + "description": "A GitHub Enterprise Importer (GEI) repository migration.", + "fields": [ + { + "name": "continueOnError","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "failureReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "migrationLogUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "migrationSource","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "MigrationSource", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sourceUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "MigrationState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "warningsCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Migration", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryMigrationConnection", + "description": "A list of migrations.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryMigrationEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryMigration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryMigrationEdge", + "description": "Represents a repository migration.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryMigration", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryMigrationOrder", + "description": "Ordering options for repository migrations.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryMigrationOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryMigrationOrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryMigrationOrderDirection", + "description": "Possible directions in which to order a list of repository migrations when provided an `orderBy` argument.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ASC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DESC","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryMigrationOrderField", + "description": "Properties by which repository migrations can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryNameConditionTarget", + "description": "Parameters to be used for the repository_name condition", + "fields": [ + { + "name": "exclude","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "include","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "protected","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryNameConditionTargetInput", + "description": "Parameters to be used for the repository_name condition", + "fields": None, + "inputFields": [ + { + "name": "exclude","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "include","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "protected","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "description": "Represents a object that belongs to a repository.", + "fields": [ + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommitCommentThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DependabotUpdate", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionCategory", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PinnedDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitCommentThread", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlert", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "description": "Ordering options for repository connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryOrderField", + "description": "Properties by which repository connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUSHED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "STARGAZERS","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "description": "Represents an owner of a Repository.", + "fields": [ + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositories","args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": "[OWNER, COLLABORATOR]" + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isArchived", + "description": "If non-null, filters repositories according to whether they are archived and not maintained", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isFork", + "description": "If non-null, filters repositories according to whether they are forks of another repository", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [ + { + "name": "name", + "description": "Name of Repository to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "followRenames", + "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "ENUM", + "name": "RepositoryPermission", + "description": "The access level to a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MAINTAIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WRITE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TRIAGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "READ","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryPlanFeatures", + "description": "Information about the availability of features and limits for a repository based on its billing plan.", + "fields": [ + { + "name": "codeowners","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "draftPullRequests","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "maximumAssignees","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "maximumManualReviewRequests","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamReviewRequests","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryPropertyConditionTarget", + "description": "Parameters to be used for the repository_property condition", + "fields": [ + { + "name": "exclude","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PropertyTargetDefinition", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "include","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PropertyTargetDefinition", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryPropertyConditionTargetInput", + "description": "Parameters to be used for the repository_property condition", + "fields": None, + "inputFields": [ + { + "name": "exclude","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PropertyTargetDefinitionInput", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "include","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PropertyTargetDefinitionInput", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRule", + "description": "A repository rule.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parameters","args": [], + "type": { + "kind": "UNION", + "name": "RuleParameters", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryRuleset","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "type","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryRuleType", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleConditions", + "description": "Set of conditions that determine if a ruleset will evaluate", + "fields": [ + { + "name": "refName","args": [], + "type": { + "kind": "OBJECT", + "name": "RefNameConditionTarget", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryId","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryIdConditionTarget", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryNameConditionTarget", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryProperty","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryPropertyConditionTarget", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleConditionsInput", + "description": "Specifies the conditions required for a ruleset to evaluate", + "fields": None, + "inputFields": [ + { + "name": "refName","type": { + "kind": "INPUT_OBJECT", + "name": "RefNameConditionTargetInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryName","type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryNameConditionTargetInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryIdConditionTargetInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryProperty","type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryPropertyConditionTargetInput", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleConnection", + "description": "The connection type for RepositoryRule.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryRuleEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryRule", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleInput", + "description": "Specifies the attributes for a new or updated rule.", + "fields": None, + "inputFields": [ + { + "name": "id","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "type","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryRuleType", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "parameters","type": { + "kind": "INPUT_OBJECT", + "name": "RuleParametersInput", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleOrder", + "description": "Ordering options for repository rules.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryRuleOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryRuleOrderField", + "description": "Properties by which repository rule connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TYPE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryRuleType", + "description": "The rule types supported in rulesets", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DELETION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REQUIRED_LINEAR_HISTORY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MERGE_QUEUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REQUIRED_REVIEW_THREAD_RESOLUTION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REQUIRED_DEPLOYMENTS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REQUIRED_SIGNATURES","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REQUIRED_STATUS_CHECKS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REQUIRED_WORKFLOW_STATUS_CHECKS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NON_FAST_FORWARD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTHORIZATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TAG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MERGE_QUEUE_LOCKED_REF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LOCK_BRANCH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MAX_REF_UPDATES","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMIT_MESSAGE_PATTERN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMIT_AUTHOR_EMAIL_PATTERN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMITTER_EMAIL_PATTERN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BRANCH_NAME_PATTERN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TAG_NAME_PATTERN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WORKFLOWS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SECRET_SCANNING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WORKFLOW_UPDATES","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "description": "A repository ruleset.", + "fields": [ + { + "name": "bypassActors","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActorConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "conditions","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryRuleConditions", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enforcement","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RuleEnforcement", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "rules","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "type", + "description": "The type of rule.", + "type": { + "kind": "ENUM", + "name": "RepositoryRuleType", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "source","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "RuleSource", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "target","args": [], + "type": { + "kind": "ENUM", + "name": "RepositoryRulesetTarget", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActor", + "description": "A team or app that has the ability to bypass a rules defined on a ruleset", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "BypassActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bypassMode","args": [], + "type": { + "kind": "ENUM", + "name": "RepositoryRulesetBypassActorBypassMode", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationAdmin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryRoleDatabaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryRoleName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryRuleset","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryRulesetBypassActorBypassMode", + "description": "The bypass mode for a specific actor on a ruleset.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ALWAYS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PULL_REQUEST","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActorConnection", + "description": "The connection type for RepositoryRulesetBypassActor.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActorEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActorEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryRulesetBypassActorInput", + "description": "Specifies the attributes for a new or updated ruleset bypass actor. Only one of `actor_id`, `repository_role_database_id`, or `organization_admin` should be specified.", + "fields": None, + "inputFields": [ + { + "name": "actorId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryRoleDatabaseId","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationAdmin","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "bypassMode","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryRulesetBypassActorBypassMode", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetConnection", + "description": "The connection type for RepositoryRuleset.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryRulesetEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryRulesetTarget", + "description": "The targets supported for rulesets", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "BRANCH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TAG","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryTopic", + "description": "A repository-topic connects a repository to a topic.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topic","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryTopicConnection", + "description": "The connection type for RepositoryTopic.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryTopicEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryTopic", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryTopicEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryTopic", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryVisibility", + "description": "The repository's visibility level.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INTERNAL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeDisableAuditEntry", + "description": "Audit log entry for a repository_visibility_change.disable event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeEnableAuditEntry", + "description": "Audit log entry for a repository_visibility_change.enable event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseSlug","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterpriseUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlert", + "description": "A Dependabot alert for a repository with a dependency affected by a security vulnerability.", + "fields": [ + { + "name": "autoDismissedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dependabotUpdate","args": [], + "type": { + "kind": "OBJECT", + "name": "DependabotUpdate", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dependencyScope","args": [], + "type": { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertDependencyScope", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismissComment","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismissReason","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismissedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismisser","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fixedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "securityAdvisory","args": [], + "type": { + "kind": "OBJECT", + "name": "SecurityAdvisory", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "securityVulnerability","args": [], + "type": { + "kind": "OBJECT", + "name": "SecurityVulnerability", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "vulnerableManifestFilename","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "vulnerableManifestPath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "vulnerableRequirements","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlertConnection", + "description": "The connection type for RepositoryVulnerabilityAlert.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlertEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlert", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertDependencyScope", + "description": "The possible scopes of an alert's dependency.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "RUNTIME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DEVELOPMENT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlertEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlert", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertState", + "description": "The possible states of an alert", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FIXED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISMISSED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AUTO_DISMISSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestReviewsInput", + "description": "Autogenerated input type of RequestReviews", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "userIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "teamIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "union","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RequestReviewsPayload", + "description": "Autogenerated return type of RequestReviews", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requestedReviewersEdge","args": [], + "type": { + "kind": "OBJECT", + "name": "UserEdge", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RequestableCheckStatusState", + "description": "The possible states that can be requested when creating a check run.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "QUEUED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN_PROGRESS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMPLETED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WAITING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "RequestedReviewer", + "description": "Types that can be requested reviewers.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Bot", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "RequestedReviewerConnection", + "description": "The connection type for RequestedReviewer.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RequestedReviewerEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "RequestedReviewer", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RequestedReviewerEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "RequestedReviewer", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "RequirableByPullRequest", + "description": "Represents a type that can be required by a pull request for merging.", + "fields": [ + { + "name": "isRequired","args": [ + { + "name": "pullRequestId", + "description": "The id of the pull request this is required for", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestNumber", + "description": "The number of the pull request this is required for", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "StatusContext", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "RequiredDeploymentsParameters", + "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", + "fields": [ + { + "name": "requiredDeploymentEnvironments","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RequiredDeploymentsParametersInput", + "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", + "fields": None, + "inputFields": [ + { + "name": "requiredDeploymentEnvironments","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RequiredStatusCheckDescription", + "description": "Represents a required status check for a protected branch, but not any specific run of that check.", + "fields": [ + { + "name": "app","args": [], + "type": { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "context","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusCheckInput", + "description": "Specifies the attributes for a new or updated required status check.", + "fields": None, + "inputFields": [ + { + "name": "context","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "appId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RequiredStatusChecksParameters", + "description": "Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.", + "fields": [ + { + "name": "requiredStatusChecks","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusCheckConfiguration", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "strictRequiredStatusChecksPolicy","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusChecksParametersInput", + "description": "Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.", + "fields": None, + "inputFields": [ + { + "name": "requiredStatusChecks","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusCheckConfigurationInput", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "strictRequiredStatusChecksPolicy","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RerequestCheckSuiteInput", + "description": "Autogenerated input type of RerequestCheckSuite", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "checkSuiteId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RerequestCheckSuitePayload", + "description": "Autogenerated return type of RerequestCheckSuite", + "fields": [ + { + "name": "checkSuite","args": [], + "type": { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "ResolveReviewThreadInput", + "description": "Autogenerated input type of ResolveReviewThread", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "threadId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ResolveReviewThreadPayload", + "description": "Autogenerated return type of ResolveReviewThread", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "thread","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RestrictedContribution", + "description": "Represents a private contribution a user made on GitHub.", + "fields": [ + { + "name": "isRestricted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "occurredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Contribution", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RetireSponsorsTierInput", + "description": "Autogenerated input type of RetireSponsorsTier", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "tierId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RetireSponsorsTierPayload", + "description": "Autogenerated return type of RetireSponsorsTier", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsTier","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RevertPullRequestInput", + "description": "Autogenerated input type of RevertPullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "draft","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RevertPullRequestPayload", + "description": "Autogenerated return type of RevertPullRequest", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "revertPullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewDismissalAllowance", + "description": "A user, team, or app who has the ability to dismiss a review on a protected branch.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "ReviewDismissalAllowanceActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "branchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "ReviewDismissalAllowanceActor", + "description": "Types that can be an actor.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "ReviewDismissalAllowanceConnection", + "description": "The connection type for ReviewDismissalAllowance.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReviewDismissalAllowanceEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReviewDismissalAllowance", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewDismissalAllowanceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ReviewDismissalAllowance", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewDismissedEvent", + "description": "Represents a 'review_dismissed' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismissalMessage","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dismissalMessageHTML","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "previousReviewState","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestCommit","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestCommit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "review","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequest", + "description": "A request for a user to review a pull request.", + "fields": [ + { + "name": "asCodeOwner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requestedReviewer","args": [], + "type": { + "kind": "UNION", + "name": "RequestedReviewer", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestConnection", + "description": "The connection type for ReviewRequest.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReviewRequestEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReviewRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "ReviewRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestRemovedEvent", + "description": "Represents an 'review_request_removed' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requestedReviewer","args": [], + "type": { + "kind": "UNION", + "name": "RequestedReviewer", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewRequestedEvent", + "description": "Represents an 'review_requested' event on a given pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "requestedReviewer","args": [], + "type": { + "kind": "UNION", + "name": "RequestedReviewer", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ReviewStatusHovercardContext", + "description": "A hovercard context with a message describing the current code review state of the pull\\nrequest.\\n", + "fields": [ + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "octicon","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewDecision","args": [], + "type": { + "kind": "ENUM", + "name": "PullRequestReviewDecision", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "HovercardContext", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RevokeEnterpriseOrganizationsMigratorRoleInput", + "description": "Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "login","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RevokeEnterpriseOrganizationsMigratorRolePayload", + "description": "Autogenerated return type of RevokeEnterpriseOrganizationsMigratorRole", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "RevokeMigratorRoleInput", + "description": "Autogenerated input type of RevokeMigratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "actor","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "actorType","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ActorType", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "RevokeMigratorRolePayload", + "description": "Autogenerated return type of RevokeMigratorRole", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "success","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RoleInOrganization", + "description": "Possible roles a user may have in relation to an organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OWNER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DIRECT_MEMBER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNAFFILIATED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "RuleEnforcement", + "description": "The level of enforcement for a rule or ruleset.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ACTIVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EVALUATE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "RuleParameters", + "description": "Types which can be parameters for `RepositoryRule` objects.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BranchNamePatternParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommitAuthorEmailPatternParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommitMessagePatternParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CommitterEmailPatternParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RequiredDeploymentsParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RequiredStatusChecksParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TagNamePatternParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "UpdateParameters", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "WorkflowsParameters", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "RuleParametersInput", + "description": "Specifies the parameters for a `RepositoryRule` object. Only one of the fields should be specified.", + "fields": None, + "inputFields": [ + { + "name": "update","type": { + "kind": "INPUT_OBJECT", + "name": "UpdateParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiredDeployments","type": { + "kind": "INPUT_OBJECT", + "name": "RequiredDeploymentsParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequest","type": { + "kind": "INPUT_OBJECT", + "name": "PullRequestParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiredStatusChecks","type": { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusChecksParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "commitMessagePattern","type": { + "kind": "INPUT_OBJECT", + "name": "CommitMessagePatternParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "commitAuthorEmailPattern","type": { + "kind": "INPUT_OBJECT", + "name": "CommitAuthorEmailPatternParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "committerEmailPattern","type": { + "kind": "INPUT_OBJECT", + "name": "CommitterEmailPatternParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "branchNamePattern","type": { + "kind": "INPUT_OBJECT", + "name": "BranchNamePatternParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "tagNamePattern","type": { + "kind": "INPUT_OBJECT", + "name": "TagNamePatternParametersInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "workflows","type": { + "kind": "INPUT_OBJECT", + "name": "WorkflowsParametersInput", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "RuleSource", + "description": "Types which can have `RepositoryRule` objects.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + ] + }, + { + "kind": "ENUM", + "name": "SamlDigestAlgorithm", + "description": "The possible digest algorithms used to sign SAML requests for an identity provider.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "SHA1","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SHA256","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SHA384","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SHA512","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SamlSignatureAlgorithm", + "description": "The possible signature algorithms used to sign SAML requests for a Identity Provider.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "RSA_SHA1","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RSA_SHA256","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RSA_SHA384","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RSA_SHA512","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SavedReply", + "description": "A Saved Reply is text a user can use to reply quickly.", + "fields": [ + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SavedReplyConnection", + "description": "The connection type for SavedReply.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SavedReplyEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SavedReply", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SavedReplyEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "SavedReply", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SavedReplyOrder", + "description": "Ordering options for saved reply connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SavedReplyOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SavedReplyOrderField", + "description": "Properties by which saved reply connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "SearchResultItem", + "description": "The results of a search.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "App", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MarketplaceListing", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "SearchResultItemConnection", + "description": "A list of results that matched against a search query. Regardless of the number of matches, a maximum of 1,000 results will be available across all types, potentially split across many pages.", + "fields": [ + { + "name": "codeCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussionCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SearchResultItemEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issueCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "SearchResultItem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "wikiCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SearchResultItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "SearchResultItem", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "textMatches","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TextMatch", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SearchType", + "description": "Represents the individual results of a search.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ISSUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REPOSITORY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "USER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISCUSSION","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisory", + "description": "A GitHub Security Advisory", + "fields": [ + { + "name": "classification","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "cvss","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CVSS", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "cwes","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CWEConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ghsaId","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "identifiers","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisoryIdentifier", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "notificationsPermalink","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "origin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permalink","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "references","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisoryReference", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "severity","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisorySeverity", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "summary","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "vulnerabilities","args": [ + { + "name": "orderBy", + "description": "Ordering options for the returned topics.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SecurityVulnerabilityOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + }, + { + "name": "ecosystem", + "description": "An ecosystem to filter vulnerabilities by.", + "type": { + "kind": "ENUM", + "name": "SecurityAdvisoryEcosystem", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "package", + "description": "A package name to filter vulnerabilities by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "severities", + "description": "A list of severities to filter vulnerabilities by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisorySeverity", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "classifications", + "description": "A list of advisory classifications to filter vulnerabilities by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityVulnerabilityConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "withdrawnAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "description": "Classification of the advisory.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "GENERAL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MALWARE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryConnection", + "description": "The connection type for SecurityAdvisory.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisoryEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisory", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SecurityAdvisoryEcosystem", + "description": "The possible ecosystems of a security vulnerability's package.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "COMPOSER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ERLANG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ACTIONS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MAVEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NPM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NUGET","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PIP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUB","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RUBYGEMS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RUST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SWIFT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "SecurityAdvisory", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryIdentifier", + "description": "A GitHub Security Advisory Identifier", + "fields": [ + { + "name": "type","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "value","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SecurityAdvisoryIdentifierFilter", + "description": "An advisory identifier to filter results on.", + "fields": None, + "inputFields": [ + { + "name": "type","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryIdentifierType", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "value","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SecurityAdvisoryIdentifierType", + "description": "Identifier formats available for advisories.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GHSA","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SecurityAdvisoryOrder", + "description": "Ordering options for security advisory connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SecurityAdvisoryOrderField", + "description": "Properties by which security advisory connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PUBLISHED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryPackage", + "description": "An individual package", + "fields": [ + { + "name": "ecosystem","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryEcosystem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryPackageVersion", + "description": "An individual package version", + "fields": [ + { + "name": "identifier","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryReference", + "description": "A GitHub Security Advisory Reference", + "fields": [ + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SecurityAdvisorySeverity", + "description": "Severity of the vulnerability.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LOW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MODERATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HIGH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CRITICAL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityVulnerability", + "description": "An individual vulnerability within an Advisory", + "fields": [ + { + "name": "advisory","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisory", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "firstPatchedVersion","args": [], + "type": { + "kind": "OBJECT", + "name": "SecurityAdvisoryPackageVersion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "package","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisoryPackage", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "severity","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisorySeverity", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "vulnerableVersionRange","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityVulnerabilityConnection", + "description": "The connection type for SecurityVulnerability.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityVulnerabilityEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityVulnerability", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SecurityVulnerabilityEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "SecurityVulnerability", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SecurityVulnerabilityOrder", + "description": "Ordering options for security vulnerability connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityVulnerabilityOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SecurityVulnerabilityOrderField", + "description": "Properties by which security vulnerability connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SetEnterpriseIdentityProviderInput", + "description": "Autogenerated input type of SetEnterpriseIdentityProvider", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ssoUrl","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "issuer","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "idpCertificate","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "signatureMethod","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SamlSignatureAlgorithm", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "digestMethod","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SamlDigestAlgorithm", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SetEnterpriseIdentityProviderPayload", + "description": "Autogenerated return type of SetEnterpriseIdentityProvider", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "identityProvider","args": [], + "type": { + "kind": "OBJECT", + "name": "EnterpriseIdentityProvider", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrganizationInteractionLimitInput", + "description": "Autogenerated input type of SetOrganizationInteractionLimit", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "limit","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryInteractionLimit", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "expiry","type": { + "kind": "ENUM", + "name": "RepositoryInteractionLimitExpiry", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SetOrganizationInteractionLimitPayload", + "description": "Autogenerated return type of SetOrganizationInteractionLimit", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SetRepositoryInteractionLimitInput", + "description": "Autogenerated input type of SetRepositoryInteractionLimit", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "limit","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryInteractionLimit", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "expiry","type": { + "kind": "ENUM", + "name": "RepositoryInteractionLimitExpiry", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SetRepositoryInteractionLimitPayload", + "description": "Autogenerated return type of SetRepositoryInteractionLimit", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SetUserInteractionLimitInput", + "description": "Autogenerated input type of SetUserInteractionLimit", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "limit","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryInteractionLimit", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "expiry","type": { + "kind": "ENUM", + "name": "RepositoryInteractionLimitExpiry", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SetUserInteractionLimitPayload", + "description": "Autogenerated return type of SetUserInteractionLimit", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SmimeSignature", + "description": "Represents an S/MIME signature on a Commit or Tag.", + "fields": [ + { + "name": "email","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isValid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "payload","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signature","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "GitSignatureState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "wasSignedByGitHub","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GitSignature", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SocialAccount", + "description": "Social media profile associated with a user.", + "fields": [ + { + "name": "displayName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "provider","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SocialAccountProvider", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SocialAccountConnection", + "description": "The connection type for SocialAccount.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SocialAccountEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SocialAccount", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SocialAccountEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "SocialAccount", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SocialAccountProvider", + "description": "Software or company that hosts social media accounts.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "GENERIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FACEBOOK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HOMETOWN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INSTAGRAM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LINKEDIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MASTODON","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REDDIT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TWITCH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TWITTER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "YOUTUBE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NPM","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "Sponsor", + "description": "Entities that can sponsor others via GitHub Sponsors", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValue", + "description": "A GitHub account and the total amount in USD they've paid for sponsorships to a particular maintainer. Does not include payments made via Patreon.", + "fields": [ + { + "name": "amountInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "formattedAmount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueConnection", + "description": "The connection type for SponsorAndLifetimeValue.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorAndLifetimeValueOrder", + "description": "Ordering options for connections to get sponsor entities and associated USD amounts for GitHub Sponsors.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorAndLifetimeValueOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorAndLifetimeValueOrderField", + "description": "Properties by which sponsor and lifetime value connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "SPONSOR_LOGIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SPONSOR_RELEVANCE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LIFETIME_VALUE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorConnection", + "description": "A list of users and organizations sponsoring someone via GitHub Sponsors.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "Sponsor", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorEdge", + "description": "Represents a user or organization who is sponsoring someone in GitHub Sponsors.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "Sponsor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorOrder", + "description": "Ordering options for connections to get sponsor entities for GitHub Sponsors.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorOrderField", + "description": "Properties by which sponsor connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LOGIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RELEVANCE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Sponsorable", + "description": "Entities that can sponsor or be sponsored through GitHub Sponsors.", + "fields": [ + { + "name": "estimatedNextSponsorsPayoutInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasSponsorsListing","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSponsoredBy","args": [ + { + "name": "accountLogin", + "description": "The target account's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSponsoringViewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lifetimeReceivedSponsorshipValues","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for results returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorAndLifetimeValueOrder", + "ofType": None + }, + "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "monthlyEstimatedSponsorsIncomeInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsoring","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the users and organizations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorOrder", + "ofType": None + }, + "defaultValue": "{field: RELEVANCE, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsors","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "tierId", + "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsors returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorOrder", + "ofType": None + }, + "defaultValue": "{field: RELEVANCE, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsActivities","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "period", + "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", + "type": { + "kind": "ENUM", + "name": "SponsorsActivityPeriod", + "ofType": None + }, + "defaultValue": "MONTH" + }, + { + "name": "since", + "description": "Filter activities to those that occurred on or after this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "until", + "description": "Filter activities to those that occurred before this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for activity returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorsActivityOrder", + "ofType": None + }, + "defaultValue": "{field: TIMESTAMP, direction: DESC}" + }, + { + "name": "actions", + "description": "Filter activities to only the specified actions.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "ofType": None + } + } + }, + "defaultValue": "[]" + }, + { + "name": "includeAsSponsor", + "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "includePrivate", + "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsActivityConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsListing","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipForViewerAsSponsor","args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipForViewerAsSponsorable","args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipNewsletters","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorship updates returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipNewsletterOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipNewsletterConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipsAsMaintainer","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "includePrivate", + "description": "Whether or not to include private sponsorships in the result set", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipsAsSponsor","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "maintainerLogins", + "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalSponsorshipAmountAsSponsorInCents","args": [ + { + "name": "since", + "description": "Filter payments to those that occurred on or after this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "until", + "description": "Filter payments to those that occurred before this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogins", + "description": "Filter payments to those made to the users or organizations with the specified usernames.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": "[]" + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSponsor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerIsSponsoring","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "UNION", + "name": "SponsorableItem", + "description": "Entities that can be sponsored via GitHub Sponsors", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "SponsorableItemConnection", + "description": "The connection type for SponsorableItem.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorableItemEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "SponsorableItem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorableItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "SponsorableItem", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorableOrder", + "description": "Ordering options for connections to get sponsorable entities for GitHub Sponsors.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorableOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorableOrderField", + "description": "Properties by which sponsorable connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LOGIN","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsActivity", + "description": "An event related to sponsorship activity.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "currentPrivacyLevel","args": [], + "type": { + "kind": "ENUM", + "name": "SponsorshipPrivacy", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "paymentSource","args": [], + "type": { + "kind": "ENUM", + "name": "SponsorshipPaymentSource", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "previousSponsorsTier","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsor","args": [], + "type": { + "kind": "UNION", + "name": "Sponsor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsTier","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "timestamp","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viaBulkSponsorship","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "description": "The possible actions that GitHub Sponsors activities can represent.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NEW_SPONSORSHIP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CANCELLED_SPONSORSHIP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TIER_CHANGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "REFUND","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING_CHANGE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SPONSOR_MATCH_DISABLED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsActivityConnection", + "description": "The connection type for SponsorsActivity.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsActivityEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsActivity", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsActivityEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsActivity", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorsActivityOrder", + "description": "Ordering options for GitHub Sponsors activity connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsActivityOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorsActivityOrderField", + "description": "Properties by which GitHub Sponsors activity connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TIMESTAMP","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorsActivityPeriod", + "description": "The possible time periods for which Sponsors activities can be requested.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DAY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WEEK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MONTH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorsCountryOrRegionCode", + "description": "Represents countries or regions for billing and residence for a GitHub Sponsors profile.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "AF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AX", + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AQ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AU","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BB","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BJ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BQ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BV","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CV","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CX","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CI", + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CW", + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DJ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SV","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GQ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ET","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FJ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GU","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "HU","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ID","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IQ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "JM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "JP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "JE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "JO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LV","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LB","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LU","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MV","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ML","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MQ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MU","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "YT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MX","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NU","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MP","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "QA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RU","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BL", + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "KN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "RS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SX","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SB","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ZA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ES","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SJ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TW","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TJ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TL","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TO","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TR", + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "TV","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "AE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "GB","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "US","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UZ","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VU","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VG","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VI","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "WF","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "EH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "YE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ZM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ZW","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsGoal", + "description": "A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.", + "fields": [ + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "kind","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsGoalKind", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "percentComplete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "targetValue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorsGoalKind", + "description": "The different kinds of goals a GitHub Sponsors member can have.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TOTAL_SPONSORS_COUNT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MONTHLY_SPONSORSHIP_AMOUNT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsListing", + "description": "A GitHub Sponsors listing.", + "fields": [ + { + "name": "activeGoal","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsGoal", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "activeStripeConnectAccount","args": [], + "type": { + "kind": "OBJECT", + "name": "StripeConnectAccount", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "billingCountryOrRegion","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contactEmailAddress","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dashboardResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dashboardUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "featuredItems","args": [ + { + "name": "featureableTypes", + "description": "The types of featured items to return.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsListingFeaturedItemFeatureableType", + "ofType": None + } + } + }, + "defaultValue": "[REPOSITORY, USER]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsListingFeaturedItem", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fiscalHost","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDescription","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fullDescriptionHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPublic","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nextPayoutDate","args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "residenceCountryOrRegion","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "shortDescription","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "slug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tiers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for Sponsors tiers returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorsTierOrder", + "ofType": None + }, + "defaultValue": "{field: MONTHLY_PRICE_IN_CENTS, direction: ASC}" + }, + { + "name": "includeUnpublished", + "description": "Whether to include tiers that aren't published. Only admins of the Sponsors listing can see draft tiers. Only admins of the Sponsors listing and viewers who are currently sponsoring on a retired tier can see those retired tiers. Defaults to including only published tiers, which are visible to anyone who can see the GitHub Sponsors profile.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "OBJECT", + "name": "SponsorsTierConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "SponsorsListingFeatureableItem", + "description": "A record that can be featured on a GitHub Sponsors profile.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "SponsorsListingFeaturedItem", + "description": "A record that is promoted on a GitHub Sponsors profile.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "featureable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "SponsorsListingFeatureableItem", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "position","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsListing","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorsListingFeaturedItemFeatureableType", + "description": "The different kinds of records that can be featured on a GitHub Sponsors profile page.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "REPOSITORY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "USER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsTier", + "description": "A GitHub Sponsors tier associated with a GitHub Sponsors listing.", + "fields": [ + { + "name": "adminInfo","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTierAdminInfo", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "closestLesserValueTier","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "descriptionHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCustomAmount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isOneTime","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "monthlyPriceInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "monthlyPriceInDollars","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsListing","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsTierAdminInfo", + "description": "SponsorsTier information only visible to users that can administer the associated Sponsors listing.", + "fields": [ + { + "name": "isDraft","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPublished","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isRetired","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorships","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "includePrivate", + "description": "Whether or not to return private sponsorships using this tier. Defaults to only returning public sponsorships on this tier.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsTierConnection", + "description": "The connection type for SponsorsTier.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsTierEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorsTierEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorsTierOrder", + "description": "Ordering options for Sponsors tiers connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsTierOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorsTierOrderField", + "description": "Properties by which Sponsors tiers connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MONTHLY_PRICE_IN_CENTS","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Sponsorship", + "description": "A sponsorship relationship between a sponsor and a maintainer", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isActive","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isOneTimePayment","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSponsorOptedIntoEmail","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "maintainer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "`Sponsorship.maintainer` will be removed. Use `Sponsorship.sponsorable` instead. Removal on 2020-04-01 UTC." + }, + { + "name": "paymentSource","args": [], + "type": { + "kind": "ENUM", + "name": "SponsorshipPaymentSource", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "privacyLevel","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorshipPrivacy", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsor","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "`Sponsorship.sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead. Removal on 2020-10-01 UTC." + }, + { + "name": "sponsorEntity","args": [], + "type": { + "kind": "UNION", + "name": "Sponsor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tier","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsTier", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tierSelectedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "description": "A list of sponsorships either from the subject or received by the subject.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalRecurringMonthlyPriceInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalRecurringMonthlyPriceInDollars","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorshipEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorshipNewsletter", + "description": "An update sent to sponsors of a user or organization on GitHub Sponsors.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPublished","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorshipNewsletterConnection", + "description": "The connection type for SponsorshipNewsletter.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipNewsletterEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipNewsletter", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SponsorshipNewsletterEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorshipNewsletter", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorshipNewsletterOrder", + "description": "Ordering options for sponsorship newsletter connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorshipNewsletterOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorshipNewsletterOrderField", + "description": "Properties by which sponsorship update connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "description": "Ordering options for sponsorship connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorshipOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorshipOrderField", + "description": "Properties by which sponsorship connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorshipPaymentSource", + "description": "How payment was made for funding a GitHub Sponsors sponsorship.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "GITHUB","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PATREON","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SponsorshipPrivacy", + "description": "The privacy of a sponsorship", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PUBLIC","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PRIVATE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SquashMergeCommitMessage", + "description": "The possible default commit messages for squash merges.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PR_BODY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMIT_MESSAGES","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "BLANK","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SquashMergeCommitTitle", + "description": "The possible default commit titles for squash merges.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "PR_TITLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "COMMIT_OR_PR_TITLE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SshSignature", + "description": "Represents an SSH signature on a Commit or Tag.", + "fields": [ + { + "name": "email","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isValid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "keyFingerprint","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "payload","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signature","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "GitSignatureState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "wasSignedByGitHub","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GitSignature", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "StarOrder", + "description": "Ways in which star connections can be ordered.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "StarOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "StarOrderField", + "description": "Properties by which star connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "STARRED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StargazerConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StargazerEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StargazerEdge", + "description": "Represents a user that's starred a repository.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "starredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Starrable", + "description": "Things that can be starred.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stargazerCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stargazers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "StarOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StargazerConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasStarred","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Gist", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "StarredRepositoryConnection", + "description": "The connection type for Repository.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StarredRepositoryEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isOverLimit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StarredRepositoryEdge", + "description": "Represents a starred repository.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "starredAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "StartOrganizationMigrationInput", + "description": "Autogenerated input type of StartOrganizationMigration", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sourceOrgUrl","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "targetOrgName","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "targetEnterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "sourceAccessToken","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StartOrganizationMigrationPayload", + "description": "Autogenerated return type of StartOrganizationMigration", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "orgMigration","args": [], + "type": { + "kind": "OBJECT", + "name": "OrganizationMigration", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "StartRepositoryMigrationInput", + "description": "Autogenerated input type of StartRepositoryMigration", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sourceId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "sourceRepositoryUrl","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryName","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "continueOnError","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "gitArchiveUrl","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "metadataArchiveUrl","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "accessToken","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "githubPat","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "skipReleases","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "targetRepoVisibility","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "lockSource","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StartRepositoryMigrationPayload", + "description": "Autogenerated return type of StartRepositoryMigration", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryMigration","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryMigration", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Status", + "description": "Represents a commit status.", + "fields": [ + { + "name": "combinedContexts","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusCheckRollupContextConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "context","args": [ + { + "name": "name", + "description": "The context name.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "StatusContext", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contexts","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusContext", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "StatusState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StatusCheckConfiguration", + "description": "Required status check", + "fields": [ + { + "name": "context","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "integrationId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusCheckConfigurationInput", + "description": "Required status check", + "fields": None, + "inputFields": [ + { + "name": "context","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "integrationId","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StatusCheckRollup", + "description": "Represents the rollup for both the check runs and status for a commit.", + "fields": [ + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contexts","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusCheckRollupContextConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "StatusState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "StatusCheckRollupContext", + "description": "Types that can be inside a StatusCheckRollup context.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "StatusContext", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "StatusCheckRollupContextConnection", + "description": "The connection type for StatusCheckRollupContext.", + "fields": [ + { + "name": "checkRunCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "checkRunCountsByState","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckRunStateCount", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusCheckRollupContextEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "StatusCheckRollupContext", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "statusContextCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "statusContextCountsByState","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusContextStateCount", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StatusCheckRollupContextEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "StatusCheckRollupContext", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StatusContext", + "description": "Represents an individual commit status context", + "fields": [ + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "40" + } + ], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commit","args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "context","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "creator","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isRequired","args": [ + { + "name": "pullRequestId", + "description": "The id of the pull request this is required for", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestNumber", + "description": "The number of the pull request this is required for", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "StatusState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "targetUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RequirableByPullRequest", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StatusContextStateCount", + "description": "Represents a count of the state of a status context.", + "fields": [ + { + "name": "count","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "StatusState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "StatusState", + "description": "The possible commit status states.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "EXPECTED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ERROR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FAILURE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PENDING","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUCCESS","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "String", + "description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "StripeConnectAccount", + "description": "A Stripe Connect account for receiving sponsorship funds from GitHub Sponsors.", + "fields": [ + { + "name": "accountId","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "billingCountryOrRegion","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "countryOrRegion","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isActive","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsListing","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stripeDashboardUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "SubmitPullRequestReviewInput", + "description": "Autogenerated input type of SubmitPullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "event","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewEvent", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SubmitPullRequestReviewPayload", + "description": "Autogenerated return type of SubmitPullRequestReview", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReview","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Submodule", + "description": "A pointer to a repository at a specific revision embedded inside another repository.", + "fields": [ + { + "name": "branch","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "gitUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nameRaw","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Base64String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pathRaw","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Base64String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subprojectCommitOid","args": [], + "type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SubmoduleConnection", + "description": "The connection type for Submodule.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SubmoduleEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Submodule", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SubmoduleEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Submodule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "description": "Entities that can be subscribed to for web and email notifications.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSubscribe","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerSubscription","args": [], + "type": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + } + ] + }, + { + "kind": "INTERFACE", + "name": "SubscribableThread", + "description": "Entities that can be subscribed to for web and email notifications.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerThreadSubscriptionFormAction","args": [], + "type": { + "kind": "ENUM", + "name": "ThreadSubscriptionFormAction", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerThreadSubscriptionStatus","args": [], + "type": { + "kind": "ENUM", + "name": "ThreadSubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "SubscribedEvent", + "description": "Represents a 'subscribed' event on a given `Subscribable`.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subscribable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "SubscriptionState", + "description": "The possible states of a subscription.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "UNSUBSCRIBED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIBED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IGNORED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "SuggestedReviewer", + "description": "A suggestion to review a pull request based on a user's commit history and review comments.", + "fields": [ + { + "name": "isAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCommenter","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Tag", + "description": "Represents a Git tag.", + "fields": [ + { + "name": "abbreviatedOid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tagger","args": [], + "type": { + "kind": "OBJECT", + "name": "GitActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "target","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TagNamePatternParameters", + "description": "Parameters to be used for the tag_name_pattern rule", + "fields": [ + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "negate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operator","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pattern","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "TagNamePatternParametersInput", + "description": "Parameters to be used for the tag_name_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "negate","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "operator","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "pattern","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Team", + "description": "A team of users in an organization.", + "fields": [ + { + "name": "ancestors","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size in pixels of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "400" + } + ], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "childTeams","args": [ + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userLogins", + "description": "User logins to filter by", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "immediateOnly", + "description": "Whether to list immediate child teams or all descendant child teams.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "combinedSlug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [ + { + "name": "number", + "description": "The sequence number of the discussion to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isPinned", + "description": "If provided, filters discussions according to whether or not they are pinned.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamDiscussionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamDiscussionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussionsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussionsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editTeamResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editTeamUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invitations","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationInvitationConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "memberStatuses","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for user statuses returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserStatusOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserStatusConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "members","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "The search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "membership", + "description": "Filter by membership type", + "type": { + "kind": "ENUM", + "name": "TeamMembershipType", + "ofType": None + }, + "defaultValue": "ALL" + }, + { + "name": "role", + "description": "Filter by team member role", + "type": { + "kind": "ENUM", + "name": "TeamMemberRole", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamMemberOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamMemberConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "membersUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "newTeamResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "newTeamUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "notificationSetting","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TeamNotificationSetting", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeam","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "privacy","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TeamPrivacy", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [ + { + "name": "number", + "description": "The Project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsV2","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "ofType": None + }, + "defaultValue": "{field: NUMBER, direction: DESC}" + }, + { + "name": "filterBy", + "description": "Filtering options for projects returned from this connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Filters", + "ofType": None + }, + "defaultValue": "{}" + }, + { + "name": "query", + "description": "The query to search projects by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositories","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "query", + "description": "The search string to look for. Repositories will be returned where the name contains your search string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamRepositoryOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamRepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoriesResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoriesUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewRequestDelegationAlgorithm","args": [], + "type": { + "kind": "ENUM", + "name": "TeamReviewAssignmentAlgorithm", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewRequestDelegationEnabled","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewRequestDelegationMemberCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reviewRequestDelegationNotifyTeam","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "slug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanAdminister","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSubscribe","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerSubscription","args": [], + "type": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MemberStatusable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamAddMemberAuditEntry", + "description": "Audit log entry for a team.add_member event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isLdapMapped","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "TeamAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamAddRepositoryAuditEntry", + "description": "Audit log entry for a team.add_repository event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isLdapMapped","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "TeamAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "TeamAuditEntryData", + "description": "Metadata for an audit entry with action team.*", + "fields": [ + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipTeamAuditEntryData", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamAddRepositoryAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamChangeParentTeamAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveMemberAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveRepositoryAuditEntry", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "TeamChangeParentTeamAuditEntry", + "description": "Audit log entry for a team.change_parent_team event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isLdapMapped","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeam","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeamName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeamNameWas","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeamResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeamUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeamWas","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeamWasResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "parentTeamWasUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "TeamAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamConnection", + "description": "The connection type for Team.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "description": "A team discussion.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyVersion","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "comments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamDiscussionCommentOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "fromComment", + "description": "When provided, filters the connection such that results begin with the comment with this number.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamDiscussionCommentConnection", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "commentsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "commentsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPinned","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "isPrivate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "team","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "title","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanPin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSubscribe","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerSubscription","args": [], + "type": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "description": "A comment on a team discussion.", + "fields": [ + { + "name": "author","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "authorAssociation","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "body","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyText","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bodyVersion","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdViaEmail","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "includesCreatedEdit","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastEditedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "number","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "publishedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactionGroups","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionGroup", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "reactions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": { + "kind": "ENUM", + "name": "ReactionContent", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReactionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." + }, + { + "name": "userContentEdits","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanDelete","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReact","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerDidAuthor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Comment", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionCommentConnection", + "description": "The connection type for TeamDiscussionComment.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamDiscussionCommentEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamDiscussionCommentOrder", + "description": "Ways in which team discussion comment connections can be ordered.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TeamDiscussionCommentOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamDiscussionCommentOrderField", + "description": "Properties by which team discussion comment connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NUMBER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionConnection", + "description": "The connection type for TeamDiscussion.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamDiscussionEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamDiscussionOrder", + "description": "Ways in which team discussion connections can be ordered.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TeamDiscussionOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamDiscussionOrderField", + "description": "Properties by which team discussion connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamMemberConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamMemberEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamMemberEdge", + "description": "Represents a user who is a member of a team.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "memberAccessResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "memberAccessUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "role","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TeamMemberRole", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamMemberOrder", + "description": "Ordering options for team member connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TeamMemberOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamMemberOrderField", + "description": "Properties by which team member connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "LOGIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamMemberRole", + "description": "The possible team member roles; either 'maintainer' or 'member'.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "MAINTAINER","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MEMBER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamMembershipType", + "description": "Defines which types of team members are included in the returned list. Can be one of IMMEDIATE, CHILD_TEAM or ALL.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "IMMEDIATE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CHILD_TEAM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ALL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamNotificationSetting", + "description": "The possible team notification values.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NOTIFICATIONS_ENABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NOTIFICATIONS_DISABLED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamOrder", + "description": "Ways in which team connections can be ordered.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TeamOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamOrderField", + "description": "Properties by which team connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamPrivacy", + "description": "The possible team privacy values.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "SECRET","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VISIBLE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveMemberAuditEntry", + "description": "Audit log entry for a team.remove_member event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isLdapMapped","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "TeamAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamRemoveRepositoryAuditEntry", + "description": "Audit log entry for a team.remove_repository event.", + "fields": [ + { + "name": "action","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actor","args": [], + "type": { + "kind": "UNION", + "name": "AuditEntryActor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorIp","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLocation","args": [], + "type": { + "kind": "OBJECT", + "name": "ActorLocation", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "actorUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "PreciseDateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isLdapMapped","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "operationType","args": [], + "type": { + "kind": "ENUM", + "name": "OperationType", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userLogin","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userResourcePath","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "userUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditEntry", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "TeamAuditEntryData", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamRepositoryConnection", + "description": "The connection type for Repository.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TeamRepositoryEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TeamRepositoryEdge", + "description": "Represents a team repository.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "permission","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryPermission", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamRepositoryOrder", + "description": "Ordering options for team repository connections", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "TeamRepositoryOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamRepositoryOrderField", + "description": "Properties by which team repository connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PUSHED_AT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NAME","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PERMISSION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "STARGAZERS","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamReviewAssignmentAlgorithm", + "description": "The possible team review assignment algorithms", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ROUND_ROBIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LOAD_BALANCE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TeamRole", + "description": "The role of a user on a team.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ADMIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MEMBER","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TextMatch", + "description": "A text match within a search result.", + "fields": [ + { + "name": "fragment","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "highlights","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TextMatchHighlight", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "property","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TextMatchHighlight", + "description": "Represents a single highlight in a search result match.", + "fields": [ + { + "name": "beginIndice","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "endIndice","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "text","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ThreadSubscriptionFormAction", + "description": "The possible states of a thread subscription form action", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIBE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNSUBSCRIBE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "ThreadSubscriptionState", + "description": "The possible states of a subscription.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "UNAVAILABLE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IGNORING_LIST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIBED_TO_THREAD_EVENTS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "IGNORING_THREAD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIBED_TO_LIST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIBED_TO_THREAD_TYPE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIBED_TO_THREAD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NONE","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Topic", + "description": "A topic aggregates entities that are related to a subject.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "relatedTopics","args": [ + { + "name": "first", + "description": "How many topics to return.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "3" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositories","args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": "[OWNER, COLLABORATOR]" + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableOnly", + "description": "If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stargazerCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "stargazers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "StarOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StargazerConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasStarred","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Starrable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "TopicAuditEntryData", + "description": "Metadata for an audit entry with a topic.", + "fields": [ + { + "name": "topic","args": [], + "type": { + "kind": "OBJECT", + "name": "Topic", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topicName","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "RepoAddTopicAuditEntry", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepoRemoveTopicAuditEntry", + "ofType": None + } + ] + }, + { + "kind": "ENUM", + "name": "TopicSuggestionDeclineReason", + "description": "Reason that the suggested topic is declined.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NOT_RELEVANT","isDeprecated": True, + }, + { + "name": "TOO_SPECIFIC","isDeprecated": True, + }, + { + "name": "PERSONAL_PREFERENCE","isDeprecated": True, + }, + { + "name": "TOO_GENERAL","isDeprecated": True, + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "TrackedIssueStates", + "description": "The possible states of a tracked issue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "OPEN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CLOSED","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "TransferEnterpriseOrganizationInput", + "description": "Autogenerated input type of TransferEnterpriseOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "destinationEnterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TransferEnterpriseOrganizationPayload", + "description": "Autogenerated return type of TransferEnterpriseOrganization", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "TransferIssueInput", + "description": "Autogenerated input type of TransferIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "issueId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "createLabelsIfMissing","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TransferIssuePayload", + "description": "Autogenerated return type of TransferIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TransferredEvent", + "description": "Represents a 'transferred' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fromRepository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "Tree", + "description": "Represents a Git tree.", + "fields": [ + { + "name": "abbreviatedOid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "entries","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "TreeEntry", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "TreeEntry", + "description": "Represents a Git tree entry.", + "fields": [ + { + "name": "extension","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isGenerated","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "language","args": [], + "type": { + "kind": "OBJECT", + "name": "Language", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lineCount","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mode","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nameRaw","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Base64String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "object","args": [], + "type": { + "kind": "INTERFACE", + "name": "GitObject", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "oid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pathRaw","args": [], + "type": { + "kind": "SCALAR", + "name": "Base64String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "size","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "submodule","args": [], + "type": { + "kind": "OBJECT", + "name": "Submodule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "type","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "URI", + "description": "An RFC 3986, RFC 3987, and RFC 6570 (level 4) compliant URI string.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnarchiveProjectV2ItemInput", + "description": "Autogenerated input type of UnarchiveProjectV2Item", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "itemId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnarchiveProjectV2ItemPayload", + "description": "Autogenerated return type of UnarchiveProjectV2Item", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnarchiveRepositoryInput", + "description": "Autogenerated input type of UnarchiveRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnarchiveRepositoryPayload", + "description": "Autogenerated return type of UnarchiveRepository", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnassignedEvent", + "description": "Represents an 'unassigned' event on any assignable object.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assignable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Assignable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "assignee","args": [], + "type": { + "kind": "UNION", + "name": "Assignee", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": True, + "deprecationReason": "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC." + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnfollowOrganizationInput", + "description": "Autogenerated input type of UnfollowOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnfollowOrganizationPayload", + "description": "Autogenerated return type of UnfollowOrganization", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnfollowUserInput", + "description": "Autogenerated input type of UnfollowUser", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "userId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnfollowUserPayload", + "description": "Autogenerated return type of UnfollowUser", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "description": "Represents a type that can be retrieved by a URL.", + "fields": [ + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Bot", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ClosedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Commit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ConvertToDraftEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "CrossReferencedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Gist", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Mannequin", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "MergedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Milestone", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestCommit", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReadyForReviewEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Release", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "RepositoryTopic", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ReviewDismissedEvent", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Workflow", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "WorkflowRun", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "WorkflowRunFile", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "UnknownSignature", + "description": "Represents an unknown signature on a Commit or Tag.", + "fields": [ + { + "name": "email","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isValid","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "payload","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signature","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "signer","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "GitSignatureState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "wasSignedByGitHub","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GitSignature", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnlabeledEvent", + "description": "Represents an 'unlabeled' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "label","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Label", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "labelable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Labelable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnlinkProjectV2FromRepositoryInput", + "description": "Autogenerated input type of UnlinkProjectV2FromRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnlinkProjectV2FromRepositoryPayload", + "description": "Autogenerated return type of UnlinkProjectV2FromRepository", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnlinkProjectV2FromTeamInput", + "description": "Autogenerated input type of UnlinkProjectV2FromTeam", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "teamId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnlinkProjectV2FromTeamPayload", + "description": "Autogenerated return type of UnlinkProjectV2FromTeam", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnlinkRepositoryFromProjectInput", + "description": "Autogenerated input type of UnlinkRepositoryFromProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnlinkRepositoryFromProjectPayload", + "description": "Autogenerated return type of UnlinkRepositoryFromProject", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnlockLockableInput", + "description": "Autogenerated input type of UnlockLockable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "lockableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnlockLockablePayload", + "description": "Autogenerated return type of UnlockLockable", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unlockedRecord","args": [], + "type": { + "kind": "INTERFACE", + "name": "Lockable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnlockedEvent", + "description": "Represents an 'unlocked' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lockable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Lockable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnmarkDiscussionCommentAsAnswerInput", + "description": "Autogenerated input type of UnmarkDiscussionCommentAsAnswer", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnmarkDiscussionCommentAsAnswerPayload", + "description": "Autogenerated return type of UnmarkDiscussionCommentAsAnswer", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnmarkFileAsViewedInput", + "description": "Autogenerated input type of UnmarkFileAsViewed", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnmarkFileAsViewedPayload", + "description": "Autogenerated return type of UnmarkFileAsViewed", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnmarkIssueAsDuplicateInput", + "description": "Autogenerated input type of UnmarkIssueAsDuplicate", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "duplicateId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "canonicalId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnmarkIssueAsDuplicatePayload", + "description": "Autogenerated return type of UnmarkIssueAsDuplicate", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "duplicate","args": [], + "type": { + "kind": "UNION", + "name": "IssueOrPullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnmarkProjectV2AsTemplateInput", + "description": "Autogenerated input type of UnmarkProjectV2AsTemplate", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnmarkProjectV2AsTemplatePayload", + "description": "Autogenerated return type of UnmarkProjectV2AsTemplate", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnmarkedAsDuplicateEvent", + "description": "Represents an 'unmarked_as_duplicate' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "canonical","args": [], + "type": { + "kind": "UNION", + "name": "IssueOrPullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "duplicate","args": [], + "type": { + "kind": "UNION", + "name": "IssueOrPullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCrossRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnminimizeCommentInput", + "description": "Autogenerated input type of UnminimizeComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "subjectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnminimizeCommentPayload", + "description": "Autogenerated return type of UnminimizeComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "unminimizedComment","args": [], + "type": { + "kind": "INTERFACE", + "name": "Minimizable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnpinIssueInput", + "description": "Autogenerated input type of UnpinIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "issueId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnpinIssuePayload", + "description": "Autogenerated return type of UnpinIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnpinnedEvent", + "description": "Represents an 'unpinned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnresolveReviewThreadInput", + "description": "Autogenerated input type of UnresolveReviewThread", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "threadId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnresolveReviewThreadPayload", + "description": "Autogenerated return type of UnresolveReviewThread", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "thread","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UnsubscribeFromNotificationsInput", + "description": "Autogenerated input type of UnsubscribeFromNotifications", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ids","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnsubscribeFromNotificationsPayload", + "description": "Autogenerated return type of UnsubscribeFromNotifications", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "success","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UnsubscribedEvent", + "description": "Represents an 'unsubscribed' event on a given `Subscribable`.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subscribable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "description": "Entities that can be updated.", + "fields": [ + { + "name": "viewerCanUpdate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "GistComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + } + ] + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "description": "Comments that can be updated.", + "fields": [ + { + "name": "viewerCannotUpdateReasons","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CommitComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "GistComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateBranchProtectionRuleInput", + "description": "Autogenerated input type of UpdateBranchProtectionRule", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "branchProtectionRuleId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "pattern","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresApprovingReviews","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiredApprovingReviewCount","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresCommitSignatures","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresLinearHistory","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "blocksCreations","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "allowsForcePushes","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "allowsDeletions","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isAdminEnforced","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresStatusChecks","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresStrictStatusChecks","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiresCodeOwnerReviews","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "dismissesStaleReviews","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "restrictsReviewDismissals","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "reviewDismissalActorIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "bypassPullRequestActorIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "bypassForcePushActorIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "restrictsPushes","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pushActorIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "requiredStatusCheckContexts","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "requiredStatusChecks","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusCheckInput", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "requiresDeployments","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requiredDeploymentEnvironments","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "requiresConversationResolution","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "requireLastPushApproval","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "lockBranch","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "lockAllowsFetchAndMerge","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateBranchProtectionRulePayload", + "description": "Autogenerated return type of UpdateBranchProtectionRule", + "fields": [ + { + "name": "branchProtectionRule","args": [], + "type": { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateCheckRunInput", + "description": "Autogenerated input type of UpdateCheckRun", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "checkRunId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "detailsUrl","type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "externalId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "status","type": { + "kind": "ENUM", + "name": "RequestableCheckStatusState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "startedAt","type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "conclusion","type": { + "kind": "ENUM", + "name": "CheckConclusionState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "completedAt","type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "output","type": { + "kind": "INPUT_OBJECT", + "name": "CheckRunOutput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "actions","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CheckRunAction", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateCheckRunPayload", + "description": "Autogenerated return type of UpdateCheckRun", + "fields": [ + { + "name": "checkRun","args": [], + "type": { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateCheckSuitePreferencesInput", + "description": "Autogenerated input type of UpdateCheckSuitePreferences", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "autoTriggerPreferences","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CheckSuiteAutoTriggerPreference", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateCheckSuitePreferencesPayload", + "description": "Autogenerated return type of UpdateCheckSuitePreferences", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateDiscussionCommentInput", + "description": "Autogenerated input type of UpdateDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "commentId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateDiscussionCommentPayload", + "description": "Autogenerated return type of UpdateDiscussionComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "comment","args": [], + "type": { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateDiscussionInput", + "description": "Autogenerated input type of UpdateDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "discussionId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "categoryId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateDiscussionPayload", + "description": "Autogenerated return type of UpdateDiscussion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "discussion","args": [], + "type": { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseAdministratorRoleInput", + "description": "Autogenerated input type of UpdateEnterpriseAdministratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "login","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "role","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseAdministratorRolePayload", + "description": "Autogenerated return type of UpdateEnterpriseAdministratorRole", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "policyValue","type": { + "kind": "ENUM", + "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseDefaultRepositoryPermissionSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseDefaultRepositoryPermissionSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "ENUM", + "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "membersCanCreateRepositoriesPolicyEnabled","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "membersCanCreatePublicRepositories","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "membersCanCreatePrivateRepositories","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "membersCanCreateInternalRepositories","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanCreateRepositoriesSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanDeleteIssuesSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanMakePurchasesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseMembersCanMakePurchasesSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanMakePurchasesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanMakePurchasesSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseOrganizationProjectsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseOrganizationProjectsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseOrganizationProjectsSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseOwnerOrganizationRoleInput", + "description": "Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "organizationRole","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RoleInOrganization", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseOwnerOrganizationRolePayload", + "description": "Autogenerated return type of UpdateEnterpriseOwnerOrganizationRole", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseProfileInput", + "description": "Autogenerated input type of UpdateEnterpriseProfile", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "websiteUrl","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "location","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseProfilePayload", + "description": "Autogenerated return type of UpdateEnterpriseProfile", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseRepositoryProjectsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseRepositoryProjectsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseRepositoryProjectsSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseTeamDiscussionsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseTeamDiscussionsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseTeamDiscussionsSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enterpriseId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprise","args": [], + "type": { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnvironmentInput", + "description": "Autogenerated input type of UpdateEnvironment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "environmentId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "waitTimer","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "reviewers","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "preventSelfReview","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateEnvironmentPayload", + "description": "Autogenerated return type of UpdateEnvironment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "environment","args": [], + "type": { + "kind": "OBJECT", + "name": "Environment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListEnabledSettingInput", + "description": "Autogenerated input type of UpdateIpAllowListEnabledSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListEnabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateIpAllowListEnabledSettingPayload", + "description": "Autogenerated return type of UpdateIpAllowListEnabledSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "UNION", + "name": "IpAllowListOwner", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListEntryInput", + "description": "Autogenerated input type of UpdateIpAllowListEntry", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ipAllowListEntryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "allowListValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isActive","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateIpAllowListEntryPayload", + "description": "Autogenerated return type of UpdateIpAllowListEntry", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ipAllowListEntry","args": [], + "type": { + "kind": "OBJECT", + "name": "IpAllowListEntry", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListForInstalledAppsEnabledSettingInput", + "description": "Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListForInstalledAppsEnabledSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateIpAllowListForInstalledAppsEnabledSettingPayload", + "description": "Autogenerated return type of UpdateIpAllowListForInstalledAppsEnabledSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "UNION", + "name": "IpAllowListOwner", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIssueCommentInput", + "description": "Autogenerated input type of UpdateIssueComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateIssueCommentPayload", + "description": "Autogenerated return type of UpdateIssueComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issueComment","args": [], + "type": { + "kind": "OBJECT", + "name": "IssueComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIssueInput", + "description": "Autogenerated input type of UpdateIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "assigneeIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "milestoneId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labelIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "state","type": { + "kind": "ENUM", + "name": "IssueState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateIssuePayload", + "description": "Autogenerated return type of UpdateIssue", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issue","args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateLabelInput", + "description": "Autogenerated input type of UpdateLabel", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "color","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateLabelPayload", + "description": "Autogenerated return type of UpdateLabel", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "label","args": [], + "type": { + "kind": "OBJECT", + "name": "Label", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateNotificationRestrictionSettingInput", + "description": "Autogenerated input type of UpdateNotificationRestrictionSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownerId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "settingValue","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "NotificationRestrictionSettingValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateNotificationRestrictionSettingPayload", + "description": "Autogenerated return type of UpdateNotificationRestrictionSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "UNION", + "name": "VerifiableDomainOwner", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "description": "Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "forkingEnabled","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload", + "description": "Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateOrganizationWebCommitSignoffSettingInput", + "description": "Autogenerated input type of UpdateOrganizationWebCommitSignoffSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "organizationId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "webCommitSignoffRequired","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateOrganizationWebCommitSignoffSettingPayload", + "description": "Autogenerated return type of UpdateOrganizationWebCommitSignoffSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateParameters", + "description": "Only allow users with bypass permission to update matching refs.", + "fields": [ + { + "name": "updateAllowsFetchAndMerge","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateParametersInput", + "description": "Only allow users with bypass permission to update matching refs.", + "fields": None, + "inputFields": [ + { + "name": "updateAllowsFetchAndMerge","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePatreonSponsorabilityInput", + "description": "Autogenerated input type of UpdatePatreonSponsorability", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enablePatreonSponsorships","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdatePatreonSponsorabilityPayload", + "description": "Autogenerated return type of UpdatePatreonSponsorability", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsListing","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectCardInput", + "description": "Autogenerated input type of UpdateProjectCard", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectCardId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "isArchived","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "note","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateProjectCardPayload", + "description": "Autogenerated return type of UpdateProjectCard", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectCard","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectCard", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectColumnInput", + "description": "Autogenerated input type of UpdateProjectColumn", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectColumnId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateProjectColumnPayload", + "description": "Autogenerated return type of UpdateProjectColumn", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectColumn","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectColumn", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectInput", + "description": "Autogenerated input type of UpdateProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "state","type": { + "kind": "ENUM", + "name": "ProjectState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "public","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateProjectPayload", + "description": "Autogenerated return type of UpdateProject", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2CollaboratorsInput", + "description": "Autogenerated input type of UpdateProjectV2Collaborators", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "collaborators","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Collaborator", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2CollaboratorsPayload", + "description": "Autogenerated return type of UpdateProjectV2Collaborators", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "collaborators","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2ActorConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2DraftIssueInput", + "description": "Autogenerated input type of UpdateProjectV2DraftIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "draftIssueId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "assigneeIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2DraftIssuePayload", + "description": "Autogenerated return type of UpdateProjectV2DraftIssue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "draftIssue","args": [], + "type": { + "kind": "OBJECT", + "name": "DraftIssue", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2Input", + "description": "Autogenerated input type of UpdateProjectV2", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "shortDescription","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "readme","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "closed","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "public","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2ItemFieldValueInput", + "description": "Autogenerated input type of UpdateProjectV2ItemFieldValue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "itemId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "fieldId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "value","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldValue", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2ItemFieldValuePayload", + "description": "Autogenerated return type of UpdateProjectV2ItemFieldValue", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2Item","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2Item", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2ItemPositionInput", + "description": "Autogenerated input type of UpdateProjectV2ItemPosition", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "projectId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "itemId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "afterId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2ItemPositionPayload", + "description": "Autogenerated return type of UpdateProjectV2ItemPosition", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "items","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2ItemConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2Payload", + "description": "Autogenerated return type of UpdateProjectV2", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestBranchInput", + "description": "Autogenerated input type of UpdatePullRequestBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "expectedHeadOid","type": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "updateMethod","type": { + "kind": "ENUM", + "name": "PullRequestBranchUpdateMethod", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdatePullRequestBranchPayload", + "description": "Autogenerated return type of UpdatePullRequestBranch", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestInput", + "description": "Autogenerated input type of UpdatePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "baseRefName","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "state","type": { + "kind": "ENUM", + "name": "PullRequestUpdateState", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "maintainerCanModify","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "assigneeIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "milestoneId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labelIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "projectIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdatePullRequestPayload", + "description": "Autogenerated return type of UpdatePullRequest", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequest","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestReviewCommentInput", + "description": "Autogenerated input type of UpdatePullRequestReviewComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewCommentId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdatePullRequestReviewCommentPayload", + "description": "Autogenerated return type of UpdatePullRequestReviewComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReviewComment","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestReviewInput", + "description": "Autogenerated input type of UpdatePullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pullRequestReviewId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdatePullRequestReviewPayload", + "description": "Autogenerated return type of UpdatePullRequestReview", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequestReview","args": [], + "type": { + "kind": "OBJECT", + "name": "PullRequestReview", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRefInput", + "description": "Autogenerated input type of UpdateRef", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "refId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "oid","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "GitObjectID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "force","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateRefPayload", + "description": "Autogenerated return type of UpdateRef", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "OBJECT", + "name": "Ref", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRefsInput", + "description": "Autogenerated input type of UpdateRefs", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "refUpdates","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RefUpdate", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateRefsPayload", + "description": "Autogenerated return type of UpdateRefs", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryInput", + "description": "Autogenerated input type of UpdateRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "template","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "homepageUrl","type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasWikiEnabled","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasIssuesEnabled","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasProjectsEnabled","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasDiscussionsEnabled","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasSponsorshipsEnabled","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateRepositoryPayload", + "description": "Autogenerated return type of UpdateRepository", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryRulesetInput", + "description": "Autogenerated input type of UpdateRepositoryRuleset", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryRulesetId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "target","type": { + "kind": "ENUM", + "name": "RepositoryRulesetTarget", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "rules","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleInput", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "conditions","type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleConditionsInput", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "enforcement","type": { + "kind": "ENUM", + "name": "RuleEnforcement", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "bypassActors","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRulesetBypassActorInput", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateRepositoryRulesetPayload", + "description": "Autogenerated return type of UpdateRepositoryRuleset", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ruleset","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryWebCommitSignoffSettingInput", + "description": "Autogenerated input type of UpdateRepositoryWebCommitSignoffSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "webCommitSignoffRequired","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateRepositoryWebCommitSignoffSettingPayload", + "description": "Autogenerated return type of UpdateRepositoryWebCommitSignoffSetting", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateSponsorshipPreferencesInput", + "description": "Autogenerated input type of UpdateSponsorshipPreferences", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableId","type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogin","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "receiveEmails","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "privacyLevel","type": { + "kind": "ENUM", + "name": "SponsorshipPrivacy", + "ofType": None + }, + "defaultValue": "PUBLIC" + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateSponsorshipPreferencesPayload", + "description": "Autogenerated return type of UpdateSponsorshipPreferences", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorship","args": [], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateSubscriptionInput", + "description": "Autogenerated input type of UpdateSubscription", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "subscribableId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "state","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SubscriptionState", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateSubscriptionPayload", + "description": "Autogenerated return type of UpdateSubscription", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subscribable","args": [], + "type": { + "kind": "INTERFACE", + "name": "Subscribable", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamDiscussionCommentInput", + "description": "Autogenerated input type of UpdateTeamDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "bodyVersion","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateTeamDiscussionCommentPayload", + "description": "Autogenerated return type of UpdateTeamDiscussionComment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamDiscussionComment","args": [], + "type": { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamDiscussionInput", + "description": "Autogenerated input type of UpdateTeamDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "title","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "body","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "bodyVersion","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "pinned","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateTeamDiscussionPayload", + "description": "Autogenerated return type of UpdateTeamDiscussion", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teamDiscussion","args": [], + "type": { + "kind": "OBJECT", + "name": "TeamDiscussion", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamReviewAssignmentInput", + "description": "Autogenerated input type of UpdateTeamReviewAssignment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "enabled","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "algorithm","type": { + "kind": "ENUM", + "name": "TeamReviewAssignmentAlgorithm", + "ofType": None + }, + "defaultValue": "ROUND_ROBIN" + }, + { + "name": "teamMemberCount","type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": "1" + }, + { + "name": "notifyTeam","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "removeTeamRequest","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "includeChildTeamMembers","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "countMembersAlreadyRequested","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + }, + { + "name": "excludedTeamMemberIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateTeamReviewAssignmentPayload", + "description": "Autogenerated return type of UpdateTeamReviewAssignment", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "team","args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamsRepositoryInput", + "description": "Autogenerated input type of UpdateTeamsRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "teamIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "permission","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryPermission", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateTeamsRepositoryPayload", + "description": "Autogenerated return type of UpdateTeamsRepository", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "teams","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTopicsInput", + "description": "Autogenerated input type of UpdateTopics", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "topicNames","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateTopicsPayload", + "description": "Autogenerated return type of UpdateTopics", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "invalidTopicNames","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateUserListInput", + "description": "Autogenerated input type of UpdateUserList", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "listId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "name","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "description","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isPrivate","type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateUserListPayload", + "description": "Autogenerated return type of UpdateUserList", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "list","args": [], + "type": { + "kind": "OBJECT", + "name": "UserList", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateUserListsForItemInput", + "description": "Autogenerated input type of UpdateUserListsForItem", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "itemId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "listIds","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + } + }, + "defaultValue": None + }, + { + "name": "suggestedListIds","type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UpdateUserListsForItemPayload", + "description": "Autogenerated return type of UpdateUserListsForItem", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "item","args": [], + "type": { + "kind": "UNION", + "name": "UserListItems", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lists","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserList", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "User", + "description": "A user is an individual's account on GitHub that owns repositories and can make new content.", + "fields": [ + { + "name": "anyPinnableItems","args": [ + { + "name": "type", + "description": "Filter to only a particular kind of pinnable item.", + "type": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "avatarUrl","args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bio","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "bioHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "canReceiveOrganizationEmailsWhenNotificationsRestricted","args": [ + { + "name": "login", + "description": "The login of the organization to check.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "commitComments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "company","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "companyHTML","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "contributionsCollection","args": [ + { + "name": "organizationID", + "description": "The ID of the organization used to filter contributions.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "from", + "description": "Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "to", + "description": "Only contributions made before and up to (including) this time will be counted. If omitted, defaults to the current time or one year from the provided from argument.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ContributionsCollection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "email","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enterprises","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the User's enterprises.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseOrder", + "ofType": None + }, + "defaultValue": "{field: NAME, direction: ASC}" + }, + { + "name": "membershipType", + "description": "Filter enterprises returned based on the user's membership type.", + "type": { + "kind": "ENUM", + "name": "EnterpriseMembershipType", + "ofType": None + }, + "defaultValue": "ALL" + } + ], + "type": { + "kind": "OBJECT", + "name": "EnterpriseConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "estimatedNextSponsorsPayoutInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "followers","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "FollowerConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "following","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "FollowingConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "gist","args": [ + { + "name": "name", + "description": "The gist name to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Gist", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "gistComments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GistCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "gists","args": [ + { + "name": "privacy", + "description": "Filters Gists according to privacy.", + "type": { + "kind": "ENUM", + "name": "GistPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for gists returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "GistOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "GistConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasSponsorsListing","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hovercard","args": [ + { + "name": "primarySubjectId", + "description": "The ID of the subject to get the hovercard in the context of", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Hovercard", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "interactionAbility","args": [], + "type": { + "kind": "OBJECT", + "name": "RepositoryInteractionAbility", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isBountyHunter","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isCampusExpert","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDeveloperProgramMember","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isEmployee","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isFollowingViewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isGitHubStar","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isHireable","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSiteAdmin","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSponsoredBy","args": [ + { + "name": "accountLogin", + "description": "The target account's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isSponsoringViewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isViewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issueComments","args": [ + { + "name": "orderBy", + "description": "Ordering options for issue comments returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCommentOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "issues","args": [ + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the issues by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "filterBy", + "description": "Filtering options for issues returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilters", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "itemShowcase","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProfileItemShowcase", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lifetimeReceivedSponsorshipValues","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for results returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorAndLifetimeValueOrder", + "ofType": None + }, + "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lists","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserListConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "location","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "login","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "monthlyEstimatedSponsorsIncomeInCents","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [ + { + "name": "login", + "description": "The login of the organization to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizationVerifiedDomainEmails","args": [ + { + "name": "login", + "description": "The login of the organization to match verified domains from.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organizations","args": [ + { + "name": "orderBy", + "description": "Ordering options for the User's organizations.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "packages","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "names", + "description": "Find packages by their names.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "description": "Find packages in a repository by ID.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "packageType", + "description": "Filter registry package by type.", + "type": { + "kind": "ENUM", + "name": "PackageType", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PackageOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PackageConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnableItems","args": [ + { + "name": "types", + "description": "Filter the types of pinnable items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedItems","args": [ + { + "name": "types", + "description": "Filter the types of pinned items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PinnableItemType", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pinnedItemsRemaining","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "project","args": [ + { + "name": "number", + "description": "The project number to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectV2","args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectV2", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projects","args": [ + { + "name": "orderBy", + "description": "Ordering options for projects returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "search", + "description": "Query to search projects by, currently only searching by name.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "states", + "description": "A list of states to filter the projects by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsResourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "projectsV2","args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "ofType": None + }, + "defaultValue": "{field: NUMBER, direction: DESC}" + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pronouns","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "publicKeys","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PublicKeyConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pullRequests","args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestState", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "recentProjects","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositories","args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": "[OWNER, COLLABORATOR]" + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isArchived", + "description": "If non-null, filters repositories according to whether they are archived and not maintained", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isFork", + "description": "If non-null, filters repositories according to whether they are forks of another repository", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoriesContributedTo","args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy", + "type": { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasIssues", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "includeUserRepositories", + "description": "If true, include user repositories", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "contributionTypes", + "description": "If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY]", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryContributionType", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repository","args": [ + { + "name": "name", + "description": "Name of Repository to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "followRenames", + "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryDiscussionComments","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId", + "description": "Filter discussion comments to only those in a specific repository.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "onlyAnswers", + "description": "Filter discussion comments to only those that were marked as the answer", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionCommentConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryDiscussions","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for discussions returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DiscussionOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + }, + { + "name": "repositoryId", + "description": "Filter discussions to only those in a specific repository.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "answered", + "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "null" + }, + { + "name": "states", + "description": "A list of states to filter the discussions by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DiscussionState", + "ofType": None + } + } + }, + "defaultValue": "[]" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DiscussionConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "savedReplies","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "The field to order saved replies by.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavedReplyOrder", + "ofType": None + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "OBJECT", + "name": "SavedReplyConnection", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "socialAccounts","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SocialAccountConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsoring","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the users and organizations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorOrder", + "ofType": None + }, + "defaultValue": "{field: RELEVANCE, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsors","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "tierId", + "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsors returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorOrder", + "ofType": None + }, + "defaultValue": "{field: RELEVANCE, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsActivities","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "period", + "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", + "type": { + "kind": "ENUM", + "name": "SponsorsActivityPeriod", + "ofType": None + }, + "defaultValue": "MONTH" + }, + { + "name": "since", + "description": "Filter activities to those that occurred on or after this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "until", + "description": "Filter activities to those that occurred before this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for activity returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorsActivityOrder", + "ofType": None + }, + "defaultValue": "{field: TIMESTAMP, direction: DESC}" + }, + { + "name": "actions", + "description": "Filter activities to only the specified actions.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "ofType": None + } + } + }, + "defaultValue": "[]" + }, + { + "name": "includeAsSponsor", + "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "includePrivate", + "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsActivityConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorsListing","args": [], + "type": { + "kind": "OBJECT", + "name": "SponsorsListing", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipForViewerAsSponsor","args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipForViewerAsSponsorable","args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "OBJECT", + "name": "Sponsorship", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipNewsletters","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorship updates returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipNewsletterOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipNewsletterConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipsAsMaintainer","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "includePrivate", + "description": "Whether or not to include private sponsorships in the result set", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sponsorshipsAsSponsor","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "maintainerLogins", + "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "true" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "starredRepositories","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "ownedByViewer", + "description": "Filters starred repositories to only return repositories owned by the viewer.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "StarOrder", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StarredRepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "status","args": [], + "type": { + "kind": "OBJECT", + "name": "UserStatus", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "suggestedListNames","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserListSuggestion", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "topRepositories","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "since", + "description": "How far back in time to fetch contributed repositories", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalSponsorshipAmountAsSponsorInCents","args": [ + { + "name": "since", + "description": "Filter payments to those that occurred on or after this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "until", + "description": "Filter payments to those that occurred before this time.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "sponsorableLogins", + "description": "Filter payments to those made to the users or organizations with the specified usernames.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": "[]" + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "twitterUsername","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanChangePinnedItems","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanCreateProjects","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanFollow","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanSponsor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerIsFollowing","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerIsSponsoring","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "watching","args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": { + "kind": "ENUM", + "name": "RepositoryVisibility", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "affiliations", + "description": "Affiliation options for repositories returned from the connection. If none specified, the results will include repositories for which the current viewer is an owner or collaborator, or member.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "ofType": None + } + }, + "defaultValue": "[OWNER, COLLABORATOR]" + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "websiteUrl","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "PackageOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProfileOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Owner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Recent", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryDiscussionAuthor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryDiscussionCommentAuthor", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "Sponsorable", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "UserBlockDuration", + "description": "The possible durations that a user can be blocked for.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ONE_DAY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "THREE_DAYS","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ONE_WEEK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ONE_MONTH","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "PERMANENT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserBlockedEvent", + "description": "Represents a 'user_blocked' event on a given user.", + "fields": [ + { + "name": "actor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "blockDuration","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "UserBlockDuration", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subject","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserConnection", + "description": "A list of users.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserContentEdit", + "description": "An edit on user content", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletedAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deletedBy","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "diff","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "editor","args": [], + "type": { + "kind": "INTERFACE", + "name": "Actor", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "description": "A list of edits to content.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserContentEditEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserContentEdit", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserContentEditEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "UserContentEdit", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserEdge", + "description": "Represents a user.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserEmailMetadata", + "description": "Email attributes from External Identity", + "fields": [ + { + "name": "primary","args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "type","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "value","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserList", + "description": "A user-curated list of repositories", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isPrivate","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "items","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserListItemsConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "lastAddedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "slug","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserListConnection", + "description": "The connection type for UserList.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserListEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserList", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserListEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "UserList", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "UserListItems", + "description": "Types that can be added to a user list.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Repository", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "UserListItemsConnection", + "description": "The connection type for UserListItems.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserListItemsEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "UNION", + "name": "UserListItems", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserListItemsEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "UNION", + "name": "UserListItems", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserListSuggestion", + "description": "Represents a suggested user list.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserStatus", + "description": "The user's description of what they're currently doing.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "emoji","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "emojiHTML","args": [], + "type": { + "kind": "SCALAR", + "name": "HTML", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "expiresAt","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "indicatesLimitedAvailability","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "message","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "organization","args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "user","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserStatusConnection", + "description": "The connection type for UserStatus.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserStatusEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "UserStatus", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "UserStatusEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "UserStatus", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "UserStatusOrder", + "description": "Ordering options for user status connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "UserStatusOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "UserStatusOrderField", + "description": "Properties by which user status connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "UPDATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "VerifiableDomain", + "description": "A domain that can be verified or approved for an organization or an enterprise.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "dnsHostName","args": [], + "type": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "domain","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasFoundHostName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "hasFoundVerificationToken","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isApproved","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isRequiredForPolicyEnforcement","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isVerified","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "owner","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "VerifiableDomainOwner", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "punycodeEncodedDomain","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "tokenExpirationTime","args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "verificationToken","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "VerifiableDomainConnection", + "description": "The connection type for VerifiableDomain.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "VerifiableDomainEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "VerifiableDomain", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "VerifiableDomainEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "VerifiableDomain", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "VerifiableDomainOrder", + "description": "Ordering options for verifiable domain connections.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "VerifiableDomainOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "VerifiableDomainOrderField", + "description": "Properties by which verifiable domain connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "DOMAIN","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "UNION", + "name": "VerifiableDomainOwner", + "description": "Types that can own a verifiable domain.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Enterprise", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": None + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "VerifyVerifiableDomainInput", + "description": "Autogenerated input type of VerifyVerifiableDomain", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "id","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "VerifyVerifiableDomainPayload", + "description": "Autogenerated return type of VerifyVerifiableDomain", + "fields": [ + { + "name": "clientMutationId","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "domain","args": [], + "type": { + "kind": "OBJECT", + "name": "VerifiableDomain", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "ViewerHovercardContext", + "description": "A hovercard context with a message describing how the viewer is related.", + "fields": [ + { + "name": "message","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "octicon","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewer","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "HovercardContext", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INTERFACE", + "name": "Votable", + "description": "A subject that may be upvoted.", + "fields": [ + { + "name": "upvoteCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanUpvote","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerHasUpvoted","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Discussion", + "ofType": None + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "ofType": None + } + ] + }, + { + "kind": "OBJECT", + "name": "Workflow", + "description": "A workflow contains meta information about an Actions workflow file.", + "fields": [ + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "runs","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "orderBy", + "description": "Ordering options for the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "WorkflowRunOrder", + "ofType": None + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowRunConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "state","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "WorkflowState", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "WorkflowFileReference", + "description": "A workflow that must run for this rule to pass", + "fields": [ + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ref","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryId","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "sha","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowFileReferenceInput", + "description": "A workflow that must run for this rule to pass", + "fields": None, + "inputFields": [ + { + "name": "path","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "ref","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "repositoryId","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "sha","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "WorkflowRun", + "description": "A workflow run.", + "fields": [ + { + "name": "checkSuite","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "createdAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "databaseId","args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deploymentReviews","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentReviewConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "event","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "file","args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowRunFile", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pendingDeploymentRequests","args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + }, + "defaultValue": None + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentRequestConnection", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "runNumber","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "updatedAt","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "workflow","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "Workflow", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "WorkflowRunConnection", + "description": "The connection type for WorkflowRun.", + "fields": [ + { + "name": "edges","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowRunEdge", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "nodes","args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowRun", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "pageInfo","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "totalCount","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "WorkflowRunEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "node","args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowRun", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "WorkflowRunFile", + "description": "An executed workflow file for a workflow run.", + "fields": [ + { + "name": "id","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "path","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryFileUrl","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "repositoryName","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "resourcePath","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "run","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowRun", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "url","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "URI", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanPushRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "viewerCanReadRepository","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": None + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "ofType": None + } + ], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowRunOrder", + "description": "Ways in which lists of workflow runs can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "WorkflowRunOrderField", + "ofType": None + } + }, + "defaultValue": None + }, + { + "name": "direction","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": None + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "WorkflowRunOrderField", + "description": "Properties by which workflow run connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "CREATED_AT","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "WorkflowState", + "description": "The possible states for a workflow.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "ACTIVE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DELETED","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED_FORK","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED_INACTIVITY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "DISABLED_MANUALLY","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "WorkflowsParameters", + "description": "Require all changes made to a targeted branch to pass the specified workflows before they can be merged.", + "fields": [ + { + "name": "workflows","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowFileReference", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowsParametersInput", + "description": "Require all changes made to a targeted branch to pass the specified workflows before they can be merged.", + "fields": None, + "inputFields": [ + { + "name": "workflows","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WorkflowFileReferenceInput", + "ofType": None + } + } + } + }, + "defaultValue": None + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "SCALAR", + "name": "X509Certificate", + "description": "A valid x509 certificate string", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "__Directive", + "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.", + "fields": [ + { + "name": "args", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isRepeatable", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "locations", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "onField", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "Use `locations`." + }, + { + "name": "onFragment", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "Use `locations`." + }, + { + "name": "onOperation", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": True, + "deprecationReason": "Use `locations`." + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "QUERY","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "MUTATION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SUBSCRIPTION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FIELD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FRAGMENT_DEFINITION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FRAGMENT_SPREAD","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INLINE_FRAGMENT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SCHEMA","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "SCALAR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OBJECT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "FIELD_DEFINITION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ARGUMENT_DEFINITION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INTERFACE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ENUM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ENUM_VALUE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INPUT_OBJECT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INPUT_FIELD_DEFINITION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "VARIABLE_DEFINITION","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "__EnumValue", + "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.", + "fields": [ + { + "name": "deprecationReason", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDeprecated", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "__Field", + "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.", + "fields": [ + { + "name": "args", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deprecationReason", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDeprecated", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "type", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "__InputValue", + "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.", + "fields": [ + { + "name": "defaultValue","args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "deprecationReason", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "description", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "isDeprecated", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "type", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "__Schema", + "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.", + "fields": [ + { + "name": "description", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "directives","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__Directive", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "mutationType","args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "queryType","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "subscriptionType","args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "types","args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + } + } + } + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "OBJECT", + "name": "__Type", + "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 and description, 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.", + "fields": [ + { + "name": "description", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "enumValues", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__EnumValue", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "fields", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__Field", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "inputFields", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "interfaces", + "description": None, + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "kind", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", + "ofType": None + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ofType", + "description": None, + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "possibleTypes", + "description": None, + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": None + } + } + }, + "isDeprecated": False, + "deprecationReason": None + }, + { + "name": "specifiedByUrl", + "description": None, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + "isDeprecated": False, + "deprecationReason": None + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "SCALAR","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "OBJECT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INTERFACE","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "UNION","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "ENUM","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "INPUT_OBJECT","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "LIST","isDeprecated": False, + "deprecationReason": None + }, + { + "name": "NON_NULL","isDeprecated": False, + "deprecationReason": None + } + ], + "possibleTypes": None + } + ], + "directives": [ + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ] + }, + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if","type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": None + } + }, + "defaultValue": None + } + ] + }, + { + "name": "deprecated", + "locations": [ + "FIELD_DEFINITION", + "ENUM_VALUE", + "ARGUMENT_DEFINITION", + "INPUT_FIELD_DEFINITION" + ], + "args": [ + { + "name": "reason","type": { + "kind": "SCALAR", + "name": "String", + "ofType": None + }, + } + ] + }, + { + "name": "requiredCapabilities", + "description": None, + "locations": [ + "OBJECT", + "SCALAR", + "ARGUMENT_DEFINITION", + "INTERFACE", + "INPUT_OBJECT", + "FIELD_DEFINITION", + "ENUM", + "ENUM_VALUE", + "UNION", + "INPUT_FIELD_DEFINITION" + ], + "args": [ + { + "name": "requiredCapabilities", + "description": None, + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": None + } + } + }, + "defaultValue": None + } + ] + } + ] + } + } +} diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py b/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py index 699a4d5b..fbcd550c 100644 --- a/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py +++ b/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py @@ -1,32 +1,95 @@ import unittest -import requests import responses -from update_github_org_users.util.github import query_users_for_org +from .introspection_json import introspection +from update_github_org_users.util.github import _get_client, _build_queries +from graphql import print_ast def noop(): pass class TestQueryUsersForOrg(unittest.TestCase): - @responses.activate + @responses.activate() + def test_query_single_user_for_org(self): + expected_query = """query ($q1: String!, $org: String!) { + q1: user(login: $q1) { + organization(login: $org) { + login + } + } +}""" + responses.add( + responses.POST, + "https://api.github.com/graphql", + json=introspection, + status=200 + ) + client = _get_client("") + with client as session: + org = "artemis" + github_users = [{ + "artemis_user_id": "1234", + "username": "test-user", + "query_name": "q1" + }] + query, variables = _build_queries(client, org, github_users) + self.assertEqual(print_ast(query), expected_query) + self.assertEqual(variables, { + "org": "artemis", + "q1": "test-user" + }) + + + @responses.activate() def test_query_users_for_org(self): + expected_query = """query ($q1: String!, $org: String!, $q2: String!, $q3: String!) { + q1: user(login: $q1) { + organization(login: $org) { + login + } + } + q2: user(login: $q2) { + organization(login: $org) { + login + } + } + q3: user(login: $q3) { + organization(login: $org) { + login + } + } +}""" + expected_vars = { + "q1": "test-user1", + "q2": "test-user2", + "q3": "test-user3", + "org": "artemis" + } responses.add( responses.POST, "https://api.github.com/graphql", - json={"data":{"q1":{"organization":{"login":"WarnerMedia"}}}}, - status=200, + json=introspection, + status=200 ) - authorization = "noauth" - org = "WarnerMedia" - github_users = [] - github_user = {} - github_user["artemis_user_id"] = "1234" - github_user["username"] = "test_user" - github_user["query_name"] = "q1" - github_users.append(github_user) - query_response = query_users_for_org(authorization, github_users, org) - data = query_response.get("data") - if data: - data_user = data.get(github_user["query_name"]) - if data_user: - user_in_organization = data_user.get("organization") - self.assertEqual(user_in_organization, {"login":"WarnerMedia"}) + client = _get_client("") + with client as session: + org = "artemis" + github_users = [ + { + "artemis_user_id": "1234", + "username": "test-user1", + "query_name": "q1" + }, + { + "artemis_user_id": "12345", + "username": "test-user2", + "query_name": "q2" + }, + { + "artemis_user_id": "123456", + "username": "test-user3", + "query_name": "q3" + } + ] + query, variables = _build_queries(client, org, github_users) + self.assertEqual(print_ast(query), expected_query) + self.assertEqual(variables, expected_vars) diff --git a/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py b/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py index a13e383d..c5f65067 100644 --- a/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py +++ b/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py @@ -1,9 +1,8 @@ import os from typing import Union -import requests -# from gql import Client -# from gql.transport.requests import RequestsHTTPTransport -# from gql.dsl import DSLQuery, DSLSchema, dsl_gql, DSLVariableDefinitions +from gql import Client +from gql.transport.requests import RequestsHTTPTransport +from gql.dsl import DSLQuery, DSLSchema, dsl_gql, DSLVariableDefinitions, DSLVariable from artemislib.github.app import GithubApp from artemislib.logging import Logger @@ -31,56 +30,44 @@ def query_users_for_org(authorization: str, github_users: list, org: str) -> Uni """ Given a list of GitHub users, determine if each is/is not part of a given org """ - headers = {"accept": "application/vnd.github.v3+json", "authorization": f"{authorization}"} - query = "{" - - for github_user in github_users: - query += f"""{github_user["query_name"]}: user(login: "{github_user["username"]}") {{ organization(login: "{org}") {{ login }} }}""" - - query += "}" - r = requests.post("https://api.github.com/graphql", json={"query": query}, headers=headers) + client = _get_client(authorization) + with client as session: + query, variables = _build_queries(client, org, github_users) - if r.status_code != 200: - log.error("Non-200 status code returned from GitHub") - log.error(f"Status Code: {r.status_code}") - log.error(f"Body: {r.text}") - return False - return r.json() + result = session.execute(query, variable_values=variables, get_execution_result=True) + return result -def query_users_for_org_new(authorization: str, github_users: list, org: str) -> Union[bool, dict]: - """ - Given a list of GitHub users, determine if each is/is not part of a given org - """ - user_queries = [] - variables = {"org": org} +def _get_client(authorization): headers = {"accept": "application/vnd.github.v3+json", "authorization": f"{authorization}"} transport = RequestsHTTPTransport(url="https://api.github.com/graphql", headers=headers) - client = Client(transport=transport, fetch_schema_from_transport=True) - with client as session: - assert client.schema is not None - - ds = DSLSchema(client.schema) - var_defs = DSLVariableDefinitions() - - for github_user in github_users: - variables[github_user["query_name"]] = github_user["username"] - user_queries.append(( - ds.Query.user - .args(login=var_defs[github_user["query_name"]]) - .alias(github_user["query_name"]) - .select(ds.Organization.args(login=var_defs.org) - .select(ds.Organization.login) - ) - )) + return Client(transport=transport, fetch_schema_from_transport=True) - operation = DSLQuery(user_queries) - operation.variable_definitions = var_defs - query = dsl_gql(operation) - result = session.execute(query, variable_values=variables) +def _build_queries(client, org, github_users): + user_queries = [] + variables = {"org": org} + assert client.schema is not None - return result + ds = DSLSchema(client.schema) + var_defs = DSLVariableDefinitions() + for github_user in github_users: + variables.update({github_user["query_name"]:github_user["username"]}) + # This is kind of hacky but it won't let us dynamically set vars otherwise. + var_defs.variables[github_user["query_name"]] = DSLVariable(github_user["query_name"]) + user_queries.append(( + ds.Query.user + .args(login=var_defs.variables[github_user["query_name"]]) + .alias(github_user["query_name"]) + .select(ds.User.organization.args(login=var_defs.org) + .select(ds.Organization.login) + ) + )) + + operation = DSLQuery(*user_queries) + operation.variable_definitions = var_defs + query = dsl_gql(operation) + return query, variables def _get_api_key(service_secret): From 256bd70d4c0cfb1f7a41bba775efdcb745689499 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Wed, 1 May 2024 16:03:33 -0400 Subject: [PATCH 06/37] fixing linter --- .../lambdas/api/system_services/system_services/util/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/system_services/system_services/util/service.py b/backend/lambdas/api/system_services/system_services/util/service.py index ead2a89f..254afcec 100644 --- a/backend/lambdas/api/system_services/system_services/util/service.py +++ b/backend/lambdas/api/system_services/system_services/util/service.py @@ -133,7 +133,7 @@ def _test_github(self, key: str): query = "" variables = {} if self._org is not None: - query = 'query getLogin($org: String!) {organization(login: $org) {login}}' + query = "query getLogin($org: String!) {organization(login: $org) {login}}" variables.org = self._org else: query = "viewer { login }" From 66ac88db65adbcf2e7fb8b5875f65087e93f41e8 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Wed, 1 May 2024 16:04:36 -0400 Subject: [PATCH 07/37] fixing tests and linter --- .../{tests/__init__.py => conftest.py} | 0 .../tests/data/introspection_json.py | 102873 +++++++++++ .../tests/introspection_json.py | 141840 --------------- .../tests/test_query_users_for_org.py | 55 +- .../update_github_org_users/util/github.py | 16 +- 5 files changed, 102892 insertions(+), 141892 deletions(-) rename backend/lambdas/scheduled/update_github_org_users/{tests/__init__.py => conftest.py} (100%) create mode 100644 backend/lambdas/scheduled/update_github_org_users/tests/data/introspection_json.py delete mode 100644 backend/lambdas/scheduled/update_github_org_users/tests/introspection_json.py diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/__init__.py b/backend/lambdas/scheduled/update_github_org_users/conftest.py similarity index 100% rename from backend/lambdas/scheduled/update_github_org_users/tests/__init__.py rename to backend/lambdas/scheduled/update_github_org_users/conftest.py diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/data/introspection_json.py b/backend/lambdas/scheduled/update_github_org_users/tests/data/introspection_json.py new file mode 100644 index 00000000..d76fca4f --- /dev/null +++ b/backend/lambdas/scheduled/update_github_org_users/tests/data/introspection_json.py @@ -0,0 +1,102873 @@ +introspection = { + "data": { + "__schema": { + "queryType": {"name": "Query"}, + "mutationType": {"name": "Mutation"}, + "subscriptionType": None, + "types": [ + { + "kind": "INPUT_OBJECT", + "name": "AbortQueuedMigrationsInput", + "description": "Autogenerated input type of AbortQueuedMigrations", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AbortQueuedMigrationsPayload", + "description": "Autogenerated return type of AbortQueuedMigrations", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "success", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AbortRepositoryMigrationInput", + "description": "Autogenerated input type of AbortRepositoryMigration", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "migrationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AbortRepositoryMigrationPayload", + "description": "Autogenerated return type of AbortRepositoryMigration", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "success", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AcceptEnterpriseAdministratorInvitationInput", + "description": "Autogenerated input type of AcceptEnterpriseAdministratorInvitation", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "invitationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AcceptEnterpriseAdministratorInvitationPayload", + "description": "Autogenerated return type of AcceptEnterpriseAdministratorInvitation", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitation", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AcceptTopicSuggestionInput", + "description": "Autogenerated input type of AcceptTopicSuggestion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AcceptTopicSuggestionPayload", + "description": "Autogenerated return type of AcceptTopicSuggestion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topic", + "args": [], + "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, + "isDeprecated": True, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Actor", + "description": "Represents an object which can take actions on GitHub. Typically a User or Bot.", + "fields": [ + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Bot", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseUserAccount", "ofType": None}, + {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ActorLocation", + "description": "Location information for an actor", + "fields": [ + { + "name": "city", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "country", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "countryCode", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "region", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "regionCode", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ActorType", + "description": "The actor's type.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "USER", "isDeprecated": False, "deprecationReason": None}, + {"name": "TEAM", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddAssigneesToAssignableInput", + "description": "Autogenerated input type of AddAssigneesToAssignable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "assignableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "assigneeIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddAssigneesToAssignablePayload", + "description": "Autogenerated return type of AddAssigneesToAssignable", + "fields": [ + { + "name": "assignable", + "args": [], + "type": {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCommentInput", + "description": "Autogenerated input type of AddComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "subjectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddCommentPayload", + "description": "Autogenerated return type of AddComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commentEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "IssueCommentEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": {"kind": "INTERFACE", "name": "Node", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "timelineEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "IssueTimelineItemEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddDiscussionCommentInput", + "description": "Autogenerated input type of AddDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "discussionId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "replyToId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddDiscussionCommentPayload", + "description": "Autogenerated return type of AddDiscussionComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comment", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddDiscussionPollVoteInput", + "description": "Autogenerated input type of AddDiscussionPollVote", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pollOptionId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddDiscussionPollVotePayload", + "description": "Autogenerated return type of AddDiscussionPollVote", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pollOption", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionPollOption", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddEnterpriseOrganizationMemberInput", + "description": "Autogenerated input type of AddEnterpriseOrganizationMember", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "userIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "role", + "type": {"kind": "ENUM", "name": "OrganizationMemberRole", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddEnterpriseOrganizationMemberPayload", + "description": "Autogenerated return type of AddEnterpriseOrganizationMember", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "users", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddEnterpriseSupportEntitlementInput", + "description": "Autogenerated input type of AddEnterpriseSupportEntitlement", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "login", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddEnterpriseSupportEntitlementPayload", + "description": "Autogenerated return type of AddEnterpriseSupportEntitlement", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddLabelsToLabelableInput", + "description": "Autogenerated input type of AddLabelsToLabelable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labelableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "labelIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddLabelsToLabelablePayload", + "description": "Autogenerated return type of AddLabelsToLabelable", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labelable", + "args": [], + "type": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProjectCardInput", + "description": "Autogenerated input type of AddProjectCard", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectColumnId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "contentId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "note", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddProjectCardPayload", + "description": "Autogenerated return type of AddProjectCard", + "fields": [ + { + "name": "cardEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectCardEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectColumn", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProjectColumnInput", + "description": "Autogenerated input type of AddProjectColumn", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddProjectColumnPayload", + "description": "Autogenerated return type of AddProjectColumn", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "columnEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectColumnEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProjectV2DraftIssueInput", + "description": "Autogenerated input type of AddProjectV2DraftIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "assigneeIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddProjectV2DraftIssuePayload", + "description": "Autogenerated return type of AddProjectV2DraftIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectItem", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProjectV2ItemByIdInput", + "description": "Autogenerated input type of AddProjectV2ItemById", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "contentId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddProjectV2ItemByIdPayload", + "description": "Autogenerated return type of AddProjectV2ItemById", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewCommentInput", + "description": "Autogenerated input type of AddPullRequestReviewComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "commitOID", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "path", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "position", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "inReplyTo", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddPullRequestReviewCommentPayload", + "description": "Autogenerated return type of AddPullRequestReviewComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comment", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commentEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewCommentEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewInput", + "description": "Autogenerated input type of AddPullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "commitOID", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "event", + "type": {"kind": "ENUM", "name": "PullRequestReviewEvent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "comments", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DraftPullRequestReviewComment", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "threads", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DraftPullRequestReviewThread", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddPullRequestReviewPayload", + "description": "Autogenerated return type of AddPullRequestReview", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReview", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewThreadInput", + "description": "Autogenerated input type of AddPullRequestReviewThread", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "line", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "side", + "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, + "defaultValue": "RIGHT", + }, + { + "name": "startLine", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "startSide", + "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, + "defaultValue": "RIGHT", + }, + { + "name": "subjectType", + "type": {"kind": "ENUM", "name": "PullRequestReviewThreadSubjectType", "ofType": None}, + "defaultValue": "LINE", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddPullRequestReviewThreadPayload", + "description": "Autogenerated return type of AddPullRequestReviewThread", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "thread", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewThreadReplyInput", + "description": "Autogenerated input type of AddPullRequestReviewThreadReply", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewThreadId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddPullRequestReviewThreadReplyPayload", + "description": "Autogenerated return type of AddPullRequestReviewThreadReply", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comment", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddReactionInput", + "description": "Autogenerated input type of AddReaction", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "subjectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "content", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddReactionPayload", + "description": "Autogenerated return type of AddReaction", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reaction", + "args": [], + "type": {"kind": "OBJECT", "name": "Reaction", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStarInput", + "description": "Autogenerated input type of AddStar", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "starrableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddStarPayload", + "description": "Autogenerated return type of AddStar", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "starrable", + "args": [], + "type": {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddUpvoteInput", + "description": "Autogenerated input type of AddUpvote", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "subjectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddUpvotePayload", + "description": "Autogenerated return type of AddUpvote", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": {"kind": "INTERFACE", "name": "Votable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "AddVerifiableDomainInput", + "description": "Autogenerated input type of AddVerifiableDomain", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "domain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddVerifiableDomainPayload", + "description": "Autogenerated return type of AddVerifiableDomain", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "domain", + "args": [], + "type": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddedToMergeQueueEvent", + "description": "Represents an 'added_to_merge_queue' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enqueuer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeQueue", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AddedToProjectEvent", + "description": "Represents a 'added_to_project' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectCard", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectColumnName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "AnnouncementBanner", + "description": "Represents an announcement banner.", + "fields": [ + { + "name": "announcement", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "announcementExpiresAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "announcementUserDismissible", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "App", + "description": "A GitHub App.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListEntries", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for IP allow list entries returned.", + "type": {"kind": "INPUT_OBJECT", "name": "IpAllowListEntryOrder", "ofType": None}, + "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IpAllowListEntryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "logoBackgroundColor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "logoUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "slug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ApproveDeploymentsPayload", + "description": "Autogenerated return type of ApproveDeployments", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployments", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ApproveVerifiableDomainInput", + "description": "Autogenerated input type of ApproveVerifiableDomain", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ApproveVerifiableDomainPayload", + "description": "Autogenerated return type of ApproveVerifiableDomain", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "domain", + "args": [], + "type": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ArchiveProjectV2ItemInput", + "description": "Autogenerated input type of ArchiveProjectV2Item", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "itemId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ArchiveProjectV2ItemPayload", + "description": "Autogenerated return type of ArchiveProjectV2Item", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ArchiveRepositoryInput", + "description": "Autogenerated input type of ArchiveRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ArchiveRepositoryPayload", + "description": "Autogenerated return type of ArchiveRepository", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Assignable", + "description": "An object that can have users assigned to it.", + "fields": [ + { + "name": "assignees", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "AssignedEvent", + "description": "Represents an 'assigned' event on any assignable object.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assignable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assignee", + "args": [], + "type": {"kind": "UNION", "name": "Assignee", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.", + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "Assignee", + "description": "Types that can be assigned to issues.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Bot", "ofType": None}, + {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "INTERFACE", + "name": "AuditEntry", + "description": "An entry in the audit log.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgAddBillingManagerAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgBlockUserAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableOauthAppRestrictionsAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableSamlAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableTwoFactorRequirementAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableOauthAppRestrictionsAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableSamlAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableTwoFactorRequirementAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveBillingManagerAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveOutsideCollaboratorAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRestoreMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUnblockUserAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUpdateMemberAuditEntry", "ofType": None}, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "ofType": None, + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "ofType": None, + }, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, + ], + }, + { + "kind": "UNION", + "name": "AuditEntryActor", + "description": "Types that can initiate an audit log event.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Bot", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "AuditLogOrder", + "description": "Ordering options for Audit Log connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": {"kind": "ENUM", "name": "AuditLogOrderField", "ofType": None}, + "defaultValue": None, + }, + { + "name": "direction", + "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "AuditLogOrderField", + "description": "Properties by which Audit Log connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AutoMergeDisabledEvent", + "description": "Represents a 'auto_merge_disabled' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "disabler", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reasonCode", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AutoMergeEnabledEvent", + "description": "Represents a 'auto_merge_enabled' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enabler", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AutoMergeRequest", + "description": "Represents an auto-merge request for a pull request", + "fields": [ + { + "name": "authorEmail", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitBody", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitHeadline", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enabledAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enabledBy", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeMethod", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AutoRebaseEnabledEvent", + "description": "Represents a 'auto_rebase_enabled' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enabler", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AutoSquashEnabledEvent", + "description": "Represents a 'auto_squash_enabled' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enabler", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AutomaticBaseChangeFailedEvent", + "description": "Represents a 'automatic_base_change_failed' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "newBase", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oldBase", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "AutomaticBaseChangeSucceededEvent", + "description": "Represents a 'automatic_base_change_succeeded' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "newBase", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oldBase", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "Base64String", + "description": "A (potentially binary) string encoded using base64.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BaseRefChangedEvent", + "description": "Represents a 'base_ref_changed' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "currentRefName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "previousRefName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BaseRefDeletedEvent", + "description": "Represents a 'base_ref_deleted' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "baseRefName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BaseRefForcePushedEvent", + "description": "Represents a 'base_ref_force_pushed' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "afterCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "beforeCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "BigInt", + "description": "Represents non-fractional signed whole numeric values. Since the value may exceed the size of a 32-bit integer, it's encoded as a string.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Blame", + "description": "Represents a Git blame.", + "fields": [ + { + "name": "ranges", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BlameRange", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BlameRange", + "description": "Represents a range of information from a Git blame.", + "fields": [ + { + "name": "age", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "endingLine", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startingLine", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Blob", + "description": "Represents a Git blob.", + "fields": [ + { + "name": "abbreviatedOid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "byteSize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isBinary", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isTruncated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "text", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "Represents `true` or `false` values.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Bot", + "description": "A special type of user which takes actions on behalf of GitHub Apps.", + "fields": [ + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "BranchActorAllowanceActor", + "description": "Types which can be actors for `BranchActorAllowance` objects.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "App", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "BranchNamePatternParameters", + "description": "Parameters to be used for the branch_name_pattern rule", + "fields": [ + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "negate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operator", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pattern", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "BranchNamePatternParametersInput", + "description": "Parameters to be used for the branch_name_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "negate", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "operator", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "pattern", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRule", + "description": "A branch protection rule.", + "fields": [ + { + "name": "allowsDeletions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "allowsForcePushes", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blocksCreations", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "branchProtectionRuleConflicts", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflictConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bypassForcePushAllowances", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BypassForcePushAllowanceConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bypassPullRequestAllowances", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BypassPullRequestAllowanceConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismissesStaleReviews", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isAdminEnforced", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockAllowsFetchAndMerge", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockBranch", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "matchingRefs", + "args": [ + { + "name": "query", + "description": "Filters refs with query on name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RefConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pattern", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pushAllowances", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PushAllowanceConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requireLastPushApproval", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiredApprovingReviewCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiredDeploymentEnvironments", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiredStatusCheckContexts", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiredStatusChecks", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RequiredStatusCheckDescription", + "ofType": None, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresApprovingReviews", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresCodeOwnerReviews", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresCommitSignatures", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresConversationResolution", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresDeployments", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresLinearHistory", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresStatusChecks", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresStrictStatusChecks", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restrictsPushes", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restrictsReviewDismissals", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewDismissalAllowances", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ReviewDismissalAllowanceConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflict", + "description": "A conflict between two branch protection rules.", + "fields": [ + { + "name": "branchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "conflictingBranchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflictConnection", + "description": "The connection type for BranchProtectionRuleConflict.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflictEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BranchProtectionRuleConflict", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleConflictEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRuleConflict", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleConnection", + "description": "The connection type for BranchProtectionRule.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BranchProtectionRuleEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BranchProtectionRuleEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "BulkSponsorship", + "description": "Information about a sponsorship to make for a user or organization with a GitHub Sponsors profile, as part of sponsoring many users or organizations at once.", + "fields": None, + "inputFields": [ + { + "name": "sponsorableId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "BypassActor", + "description": "Types that can represent a repository ruleset bypass actor.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "App", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "BypassForcePushAllowance", + "description": "A user, team, or app who has the ability to bypass a force push requirement on a protected branch.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "BranchActorAllowanceActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "branchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BypassForcePushAllowanceConnection", + "description": "The connection type for BypassForcePushAllowance.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BypassForcePushAllowanceEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BypassForcePushAllowance", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BypassForcePushAllowanceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "BypassForcePushAllowance", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BypassPullRequestAllowance", + "description": "A user, team, or app who has the ability to bypass a pull request requirement on a protected branch.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "BranchActorAllowanceActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "branchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BypassPullRequestAllowanceConnection", + "description": "The connection type for BypassPullRequestAllowance.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BypassPullRequestAllowanceEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BypassPullRequestAllowance", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "BypassPullRequestAllowanceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "BypassPullRequestAllowance", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CVSS", + "description": "The Common Vulnerability Scoring System", + "fields": [ + { + "name": "score", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "vectorString", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CWE", + "description": "A common weakness enumeration", + "fields": [ + { + "name": "cweId", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CWEConnection", + "description": "The connection type for CWE.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CWEEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CWE", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CWEEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CWE", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelEnterpriseAdminInvitationInput", + "description": "Autogenerated input type of CancelEnterpriseAdminInvitation", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "invitationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CancelEnterpriseAdminInvitationPayload", + "description": "Autogenerated return type of CancelEnterpriseAdminInvitation", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitation", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelSponsorshipInput", + "description": "Autogenerated input type of CancelSponsorship", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CancelSponsorshipPayload", + "description": "Autogenerated return type of CancelSponsorship", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsTier", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeUserStatusInput", + "description": "Autogenerated input type of ChangeUserStatus", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "emoji", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "message", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "limitedAvailability", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "expiresAt", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ChangeUserStatusPayload", + "description": "Autogenerated return type of ChangeUserStatus", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "status", + "args": [], + "type": {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckAnnotation", + "description": "A single check annotation.", + "fields": [ + { + "name": "annotationLevel", + "args": [], + "type": {"kind": "ENUM", "name": "CheckAnnotationLevel", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blobUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "location", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckAnnotationSpan", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rawDetails", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckAnnotationConnection", + "description": "The connection type for CheckAnnotation.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckAnnotationEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckAnnotation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckAnnotationData", + "description": "Information from a check run analysis to specific lines of code.", + "fields": None, + "inputFields": [ + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "location", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CheckAnnotationRange", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "annotationLevel", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CheckAnnotationLevel", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "rawDetails", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckAnnotationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CheckAnnotation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "CheckAnnotationLevel", + "description": "Represents an annotation's information level.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, + {"name": "NOTICE", "isDeprecated": False, "deprecationReason": None}, + {"name": "WARNING", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckAnnotationPosition", + "description": "A character position in a check annotation.", + "fields": [ + { + "name": "column", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "line", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckAnnotationRange", + "description": "Information from a check run analysis to specific lines of code.", + "fields": None, + "inputFields": [ + { + "name": "startLine", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "startColumn", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "endLine", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "endColumn", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckAnnotationSpan", + "description": "An inclusive pair of positions for a check annotation.", + "fields": [ + { + "name": "end", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckAnnotationPosition", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "start", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckAnnotationPosition", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "CheckConclusionState", + "description": "The possible states for a check suite or run conclusion.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ACTION_REQUIRED", "isDeprecated": False, "deprecationReason": None}, + {"name": "TIMED_OUT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CANCELLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "NEUTRAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "SKIPPED", "isDeprecated": False, "deprecationReason": None}, + {"name": "STARTUP_FAILURE", "isDeprecated": False, "deprecationReason": None}, + {"name": "STALE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckRun", + "description": "A check run.", + "fields": [ + { + "name": "annotations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "CheckAnnotationConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "checkSuite", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "completedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "conclusion", + "args": [], + "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployment", + "args": [], + "type": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "detailsUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "externalId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isRequired", + "args": [ + { + "name": "pullRequestId", + "description": "The id of the pull request this is required for", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestNumber", + "description": "The number of the pull request this is required for", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pendingDeploymentRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "DeploymentRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permalink", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "status", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "steps", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "number", + "description": "Step number", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "CheckStepConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "summary", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "text", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "RequirableByPullRequest", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckRunAction", + "description": "Possible further actions the integrator can perform.", + "fields": None, + "inputFields": [ + { + "name": "label", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "description", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckRunConnection", + "description": "The connection type for CheckRun.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckRunEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckRunEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckRunFilter", + "description": "The filters that are available when fetching check runs.", + "fields": None, + "inputFields": [ + { + "name": "checkType", + "type": {"kind": "ENUM", "name": "CheckRunType", "ofType": None}, + "defaultValue": None, + }, + { + "name": "appId", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "checkName", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "status", + "type": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "statuses", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "conclusions", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckRunOutput", + "description": "Descriptive details about the check run.", + "fields": None, + "inputFields": [ + { + "name": "title", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "summary", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "text", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "annotations", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CheckAnnotationData", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "images", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CheckRunOutputImage", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckRunOutputImage", + "description": "Images attached to the check run output displayed in the GitHub pull request UI.", + "fields": None, + "inputFields": [ + { + "name": "alt", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "imageUrl", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "caption", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "CheckRunState", + "description": "The possible states of a check run in a status rollup.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ACTION_REQUIRED", "isDeprecated": False, "deprecationReason": None}, + {"name": "CANCELLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "NEUTRAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, + {"name": "SKIPPED", "isDeprecated": False, "deprecationReason": None}, + {"name": "STALE", "isDeprecated": False, "deprecationReason": None}, + {"name": "STARTUP_FAILURE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "TIMED_OUT", "isDeprecated": False, "deprecationReason": None}, + {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckRunStateCount", + "description": "Represents a count of the state of a check run.", + "fields": [ + { + "name": "count", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CheckRunState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "CheckRunType", + "description": "The possible types of check runs.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + {"name": "LATEST", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "CheckStatusState", + "description": "The possible states for a check suite or run status.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "REQUESTED", "isDeprecated": False, "deprecationReason": None}, + {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, + {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckStep", + "description": "A single check step.", + "fields": [ + { + "name": "completedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "conclusion", + "args": [], + "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "externalId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "secondsToCompletion", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "status", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckStepConnection", + "description": "The connection type for CheckStep.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckStepEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckStep", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckStepEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CheckStep", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckSuite", + "description": "A check suite.", + "fields": [ + { + "name": "app", + "args": [], + "type": {"kind": "OBJECT", "name": "App", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "branch", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "checkRuns", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "filterBy", + "description": "Filters the check runs by this type.", + "type": {"kind": "INPUT_OBJECT", "name": "CheckRunFilter", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "CheckRunConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "conclusion", + "args": [], + "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "matchingPullRequests", + "args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "push", + "args": [], + "type": {"kind": "OBJECT", "name": "Push", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "status", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "workflowRun", + "args": [], + "type": {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckSuiteAutoTriggerPreference", + "description": "The auto-trigger preferences that are available for check suites.", + "fields": None, + "inputFields": [ + { + "name": "appId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "setting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckSuiteConnection", + "description": "The connection type for CheckSuite.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckSuiteEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CheckSuiteEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckSuiteFilter", + "description": "The filters that are available when fetching check suites.", + "fields": None, + "inputFields": [ + { + "name": "appId", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "checkName", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "Claimable", + "description": "An object which can have its data claimed or claim data from another.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "ClearLabelsFromLabelableInput", + "description": "Autogenerated input type of ClearLabelsFromLabelable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labelableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ClearLabelsFromLabelablePayload", + "description": "Autogenerated return type of ClearLabelsFromLabelable", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labelable", + "args": [], + "type": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ClearProjectV2ItemFieldValueInput", + "description": "Autogenerated input type of ClearProjectV2ItemFieldValue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "itemId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "fieldId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ClearProjectV2ItemFieldValuePayload", + "description": "Autogenerated return type of ClearProjectV2ItemFieldValue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2Item", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CloneProjectInput", + "description": "Autogenerated input type of CloneProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "targetOwnerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "includeWorkflows", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "public", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CloneProjectPayload", + "description": "Autogenerated return type of CloneProject", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "jobStatusId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CloneTemplateRepositoryInput", + "description": "Autogenerated input type of CloneTemplateRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "description", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "visibility", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "includeAllBranches", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CloneTemplateRepositoryPayload", + "description": "Autogenerated return type of CloneTemplateRepository", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Closable", + "description": "An object that can be closed", + "fields": [ + { + "name": "closed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanClose", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReopen", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + {"kind": "OBJECT", "name": "Project", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "CloseDiscussionInput", + "description": "Autogenerated input type of CloseDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "discussionId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "reason", + "type": {"kind": "ENUM", "name": "DiscussionCloseReason", "ofType": None}, + "defaultValue": "RESOLVED", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CloseDiscussionPayload", + "description": "Autogenerated return type of CloseDiscussion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CloseIssueInput", + "description": "Autogenerated input type of CloseIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "issueId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "stateReason", + "type": {"kind": "ENUM", "name": "IssueClosedStateReason", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CloseIssuePayload", + "description": "Autogenerated return type of CloseIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ClosePullRequestInput", + "description": "Autogenerated input type of ClosePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ClosePullRequestPayload", + "description": "Autogenerated return type of ClosePullRequest", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ClosedEvent", + "description": "Represents a 'closed' event on any `Closable`.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Closable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closer", + "args": [], + "type": {"kind": "UNION", "name": "Closer", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stateReason", + "args": [], + "type": {"kind": "ENUM", "name": "IssueStateReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "Closer", + "description": "The object which triggered a `ClosedEvent`.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Commit", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "CodeOfConduct", + "description": "The Code of Conduct for a repository", + "fields": [ + { + "name": "body", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "key", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "CollaboratorAffiliation", + "description": "Collaborators affiliation level with a subject.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OUTSIDE", "isDeprecated": False, "deprecationReason": None}, + {"name": "DIRECT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Comment", + "description": "Represents a comment.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "GistComment", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + ], + }, + { + "kind": "ENUM", + "name": "CommentAuthorAssociation", + "description": "A comment author association with repository.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, + {"name": "MANNEQUIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "COLLABORATOR", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONTRIBUTOR", "isDeprecated": False, "deprecationReason": None}, + {"name": "FIRST_TIME_CONTRIBUTOR", "isDeprecated": False, "deprecationReason": None}, + {"name": "FIRST_TIMER", "isDeprecated": False, "deprecationReason": None}, + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "CommentCannotUpdateReason", + "description": "The possible errors that will prevent a user from updating a comment.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ARCHIVED", "isDeprecated": False, "deprecationReason": None}, + {"name": "INSUFFICIENT_ACCESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "LOCKED", "isDeprecated": False, "deprecationReason": None}, + {"name": "LOGIN_REQUIRED", "isDeprecated": False, "deprecationReason": None}, + {"name": "MAINTENANCE", "isDeprecated": False, "deprecationReason": None}, + {"name": "VERIFIED_EMAIL_REQUIRED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DENIED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommentDeletedEvent", + "description": "Represents a 'comment_deleted' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletedCommentAuthor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Commit", + "description": "Represents a Git commit.", + "fields": [ + { + "name": "abbreviatedOid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "additions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "associatedPullRequests", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests.", + "type": {"kind": "INPUT_OBJECT", "name": "PullRequestOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "author", + "args": [], + "type": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authoredByCommitter", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authoredDate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authors", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GitActorConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blame", + "args": [ + { + "name": "path", + "description": "The file whose Git blame information you want.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Blame", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "changedFiles", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "`changedFiles` will be removed. Use `changedFilesIfAvailable` instead. Removal on 2023-01-01 UTC.", + }, + { + "name": "changedFilesIfAvailable", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "checkSuites", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "filterBy", + "description": "Filters the check suites by this type.", + "type": {"kind": "INPUT_OBJECT", "name": "CheckSuiteFilter", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "CheckSuiteConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "committedDate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "committedViaWeb", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "committer", + "args": [], + "type": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployments", + "args": [ + { + "name": "environments", + "description": "Environments to list deployments for", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for deployments returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "DeploymentOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "DeploymentConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "file", + "args": [ + { + "name": "path", + "description": "The path for the file", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "TreeEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "history", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "path", + "description": "If non-null, filters history to only show commits touching files under this path.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "author", + "description": "If non-null, filters history to only show commits with matching authorship.", + "type": {"kind": "INPUT_OBJECT", "name": "CommitAuthor", "ofType": None}, + "defaultValue": None, + }, + { + "name": "since", + "description": "Allows specifying a beginning time or date for fetching commits.", + "type": {"kind": "SCALAR", "name": "GitTimestamp", "ofType": None}, + "defaultValue": None, + }, + { + "name": "until", + "description": "Allows specifying an ending time or date for fetching commits.", + "type": {"kind": "SCALAR", "name": "GitTimestamp", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitHistoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "messageBody", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "messageBodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "messageHeadline", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "messageHeadlineHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "onBehalfOf", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parents", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pushedDate", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": True, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signature", + "args": [], + "type": {"kind": "INTERFACE", "name": "GitSignature", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "status", + "args": [], + "type": {"kind": "OBJECT", "name": "Status", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "statusCheckRollup", + "args": [], + "type": {"kind": "OBJECT", "name": "StatusCheckRollup", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "submodules", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SubmoduleConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tarballUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tree", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Tree", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "treeResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "treeUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSubscribe", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerSubscription", + "args": [], + "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "zipballUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitAuthor", + "description": "Specifies an author for filtering Git commits.", + "fields": None, + "inputFields": [ + {"name": "id", "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, "defaultValue": None}, + { + "name": "emails", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitAuthorEmailPatternParameters", + "description": "Parameters to be used for the commit_author_email_pattern rule", + "fields": [ + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "negate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operator", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pattern", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitAuthorEmailPatternParametersInput", + "description": "Parameters to be used for the commit_author_email_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "negate", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "operator", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "pattern", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitComment", + "description": "Represents a comment on a given Commit.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMinimized", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizedReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "position", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMinimize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitCommentConnection", + "description": "The connection type for CommitComment.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitCommentEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitCommentThread", + "description": "A thread of comments on a commit.", + "fields": [ + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "position", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitConnection", + "description": "The connection type for Commit.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitContributionOrder", + "description": "Ordering options for commit contribution connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommitContributionOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "CommitContributionOrderField", + "description": "Properties by which commit contribution connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OCCURRED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMIT_COUNT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitContributionsByRepository", + "description": "This aggregates commits made by a user within one repository.", + "fields": [ + { + "name": "contributions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for commit contributions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "CommitContributionOrder", "ofType": None}, + "defaultValue": "{field: OCCURRED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedCommitContributionConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitHistoryConnection", + "description": "The connection type for Commit.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitMessage", + "description": "A message to include with a new commit", + "fields": None, + "inputFields": [ + { + "name": "headline", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitMessagePatternParameters", + "description": "Parameters to be used for the commit_message_pattern rule", + "fields": [ + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "negate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operator", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pattern", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitMessagePatternParametersInput", + "description": "Parameters to be used for the commit_message_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "negate", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "operator", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "pattern", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CommittableBranch", + "fields": None, + "inputFields": [ + {"name": "id", "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, "defaultValue": None}, + { + "name": "repositoryNameWithOwner", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "branchName", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CommitterEmailPatternParameters", + "description": "Parameters to be used for the committer_email_pattern rule", + "fields": [ + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "negate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operator", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pattern", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitterEmailPatternParametersInput", + "description": "Parameters to be used for the committer_email_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "negate", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "operator", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "pattern", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Comparison", + "description": "Represents a comparison between two commit revisions.", + "fields": [ + { + "name": "aheadBy", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "baseTarget", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "behindBy", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ComparisonCommitConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headTarget", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "status", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ComparisonStatus", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ComparisonCommitConnection", + "description": "The connection type for Commit.", + "fields": [ + { + "name": "authorCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ComparisonStatus", + "description": "The status of a git comparison between two refs.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DIVERGED", "isDeprecated": False, "deprecationReason": None}, + {"name": "AHEAD", "isDeprecated": False, "deprecationReason": None}, + {"name": "BEHIND", "isDeprecated": False, "deprecationReason": None}, + {"name": "IDENTICAL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ConnectedEvent", + "description": "Represents a 'connected' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCrossRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "source", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ContributingGuidelines", + "description": "The Contributing Guidelines for a repository.", + "fields": [ + { + "name": "body", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Contribution", + "description": "Represents a contribution a user made on GitHub, such as opening an issue.", + "fields": [ + { + "name": "isRestricted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "occurredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CreatedCommitContribution", "ofType": None}, + {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, + {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, + {"kind": "OBJECT", "name": "CreatedPullRequestReviewContribution", "ofType": None}, + {"kind": "OBJECT", "name": "CreatedRepositoryContribution", "ofType": None}, + {"kind": "OBJECT", "name": "JoinedGitHubContribution", "ofType": None}, + {"kind": "OBJECT", "name": "RestrictedContribution", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ContributionCalendar", + "description": "A calendar of contributions made on GitHub by a user.", + "fields": [ + { + "name": "colors", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isHalloween", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "months", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ContributionCalendarMonth", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalContributions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "weeks", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ContributionCalendarWeek", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ContributionCalendarDay", + "description": "Represents a single day of contributions on GitHub by a user.", + "fields": [ + { + "name": "color", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contributionCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contributionLevel", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ContributionLevel", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "date", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "weekday", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ContributionCalendarMonth", + "description": "A month of contributions in a user's contribution graph.", + "fields": [ + { + "name": "firstDay", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalWeeks", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "year", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ContributionCalendarWeek", + "description": "A week of contributions in a user's contribution graph.", + "fields": [ + { + "name": "contributionDays", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ContributionCalendarDay", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "firstDay", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ContributionLevel", + "description": "Varying levels of contributions from none to many.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + {"name": "FIRST_QUARTILE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SECOND_QUARTILE", "isDeprecated": False, "deprecationReason": None}, + {"name": "THIRD_QUARTILE", "isDeprecated": False, "deprecationReason": None}, + {"name": "FOURTH_QUARTILE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ContributionOrder", + "description": "Ordering options for contribution connections.", + "fields": None, + "inputFields": [ + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ContributionsCollection", + "description": "A contributions collection aggregates contributions such as opened issues and commits created by a user.", + "fields": [ + { + "name": "commitContributionsByRepository", + "args": [ + { + "name": "maxRepositories", + "description": "How many repositories should be included.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "25", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CommitContributionsByRepository", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contributionCalendar", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ContributionCalendar", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contributionYears", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "doesEndInCurrentMonth", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "earliestRestrictedContributionDate", + "args": [], + "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "endedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "firstIssueContribution", + "args": [], + "type": {"kind": "UNION", "name": "CreatedIssueOrRestrictedContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "firstPullRequestContribution", + "args": [], + "type": { + "kind": "UNION", + "name": "CreatedPullRequestOrRestrictedContribution", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "firstRepositoryContribution", + "args": [], + "type": { + "kind": "UNION", + "name": "CreatedRepositoryOrRestrictedContribution", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasActivityInThePast", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasAnyContributions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasAnyRestrictedContributions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSingleDay", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issueContributions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "excludeFirst", + "description": "Should the user's first issue ever be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "excludePopular", + "description": "Should the user's most commented issue be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, + "defaultValue": "{direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIssueContributionConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issueContributionsByRepository", + "args": [ + { + "name": "maxRepositories", + "description": "How many repositories should be included.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "25", + }, + { + "name": "excludeFirst", + "description": "Should the user's first issue ever be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "excludePopular", + "description": "Should the user's most commented issue be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "IssueContributionsByRepository", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "joinedGitHubContribution", + "args": [], + "type": {"kind": "OBJECT", "name": "JoinedGitHubContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "latestRestrictedContributionDate", + "args": [], + "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mostRecentCollectionWithActivity", + "args": [], + "type": {"kind": "OBJECT", "name": "ContributionsCollection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mostRecentCollectionWithoutActivity", + "args": [], + "type": {"kind": "OBJECT", "name": "ContributionsCollection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "popularIssueContribution", + "args": [], + "type": {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "popularPullRequestContribution", + "args": [], + "type": {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestContributions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "excludeFirst", + "description": "Should the user's first pull request ever be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "excludePopular", + "description": "Should the user's most commented pull request be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, + "defaultValue": "{direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestContributionsByRepository", + "args": [ + { + "name": "maxRepositories", + "description": "How many repositories should be included.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "25", + }, + { + "name": "excludeFirst", + "description": "Should the user's first pull request ever be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "excludePopular", + "description": "Should the user's most commented pull request be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestContributionsByRepository", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReviewContributions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, + "defaultValue": "{direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReviewContributionsByRepository", + "args": [ + { + "name": "maxRepositories", + "description": "How many repositories should be included.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "25", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewContributionsByRepository", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryContributions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "excludeFirst", + "description": "Should the user's first repository ever be excluded from the result.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, + "defaultValue": "{direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedRepositoryContributionConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restrictedContributionsCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCommitContributions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalIssueContributions", + "args": [ + { + "name": "excludeFirst", + "description": "Should the user's first issue ever be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "excludePopular", + "description": "Should the user's most commented issue be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalPullRequestContributions", + "args": [ + { + "name": "excludeFirst", + "description": "Should the user's first pull request ever be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "excludePopular", + "description": "Should the user's most commented pull request be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalPullRequestReviewContributions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalRepositoriesWithContributedCommits", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalRepositoriesWithContributedIssues", + "args": [ + { + "name": "excludeFirst", + "description": "Should the user's first issue ever be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "excludePopular", + "description": "Should the user's most commented issue be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalRepositoriesWithContributedPullRequestReviews", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalRepositoriesWithContributedPullRequests", + "args": [ + { + "name": "excludeFirst", + "description": "Should the user's first pull request ever be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "excludePopular", + "description": "Should the user's most commented pull request be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalRepositoryContributions", + "args": [ + { + "name": "excludeFirst", + "description": "Should the user's first repository ever be excluded from this count.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ConvertProjectCardNoteToIssueInput", + "description": "Autogenerated input type of ConvertProjectCardNoteToIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectCardId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ConvertProjectCardNoteToIssuePayload", + "description": "Autogenerated return type of ConvertProjectCardNoteToIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectCard", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ConvertPullRequestToDraftInput", + "description": "Autogenerated input type of ConvertPullRequestToDraft", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ConvertPullRequestToDraftPayload", + "description": "Autogenerated return type of ConvertPullRequestToDraft", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ConvertToDraftEvent", + "description": "Represents a 'convert_to_draft' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ConvertedNoteToIssueEvent", + "description": "Represents a 'converted_note_to_issue' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectCard", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectColumnName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ConvertedToDiscussionEvent", + "description": "Represents a 'converted_to_discussion' event on a given issue.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CopyProjectV2Input", + "description": "Autogenerated input type of CopyProjectV2", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "includeDraftIssues", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CopyProjectV2Payload", + "description": "Autogenerated return type of CopyProjectV2", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateAttributionInvitationInput", + "description": "Autogenerated input type of CreateAttributionInvitation", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "targetId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateAttributionInvitationPayload", + "description": "Autogenerated return type of CreateAttributionInvitation", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "source", + "args": [], + "type": {"kind": "UNION", "name": "Claimable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "target", + "args": [], + "type": {"kind": "UNION", "name": "Claimable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateBranchProtectionRuleInput", + "description": "Autogenerated input type of CreateBranchProtectionRule", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "pattern", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "requiresApprovingReviews", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiredApprovingReviewCount", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresCommitSignatures", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresLinearHistory", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "blocksCreations", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "allowsForcePushes", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "allowsDeletions", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isAdminEnforced", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresStatusChecks", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresStrictStatusChecks", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresCodeOwnerReviews", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "dismissesStaleReviews", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "restrictsReviewDismissals", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "reviewDismissalActorIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "bypassPullRequestActorIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "bypassForcePushActorIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "restrictsPushes", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pushActorIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "requiredStatusCheckContexts", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "requiredStatusChecks", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusCheckInput", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "requiresDeployments", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiredDeploymentEnvironments", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "requiresConversationResolution", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requireLastPushApproval", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "lockBranch", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "lockAllowsFetchAndMerge", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateBranchProtectionRulePayload", + "description": "Autogenerated return type of CreateBranchProtectionRule", + "fields": [ + { + "name": "branchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateCheckRunInput", + "description": "Autogenerated input type of CreateCheckRun", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "headSha", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "detailsUrl", + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "defaultValue": None, + }, + { + "name": "externalId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "status", + "type": {"kind": "ENUM", "name": "RequestableCheckStatusState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "startedAt", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "conclusion", + "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "completedAt", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "output", + "type": {"kind": "INPUT_OBJECT", "name": "CheckRunOutput", "ofType": None}, + "defaultValue": None, + }, + { + "name": "actions", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CheckRunAction", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateCheckRunPayload", + "description": "Autogenerated return type of CreateCheckRun", + "fields": [ + { + "name": "checkRun", + "args": [], + "type": {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateCheckSuiteInput", + "description": "Autogenerated input type of CreateCheckSuite", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "headSha", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateCheckSuitePayload", + "description": "Autogenerated return type of CreateCheckSuite", + "fields": [ + { + "name": "checkSuite", + "args": [], + "type": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateCommitOnBranchInput", + "description": "Autogenerated input type of CreateCommitOnBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "branch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CommittableBranch", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "fileChanges", + "type": {"kind": "INPUT_OBJECT", "name": "FileChanges", "ofType": None}, + "defaultValue": None, + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CommitMessage", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "expectedHeadOid", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateCommitOnBranchPayload", + "description": "Autogenerated return type of CreateCommitOnBranch", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateDeploymentPayload", + "description": "Autogenerated return type of CreateDeployment", + "fields": [ + { + "name": "autoMerged", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployment", + "args": [], + "type": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateDeploymentStatusInput", + "description": "Autogenerated input type of CreateDeploymentStatus", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "deploymentId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "state", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DeploymentStatusState", "ofType": None}, + }, + "defaultValue": None, + }, + {"name": "description", "type": {"kind": "SCALAR", "name": "String", "ofType": None}}, + { + "name": "environment", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + {"name": "environmentUrl", "type": {"kind": "SCALAR", "name": "String", "ofType": None}}, + { + "name": "autoInactive", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + {"name": "logUrl", "type": {"kind": "SCALAR", "name": "String", "ofType": None}}, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateDeploymentStatusPayload", + "description": "Autogenerated return type of CreateDeploymentStatus", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deploymentStatus", + "args": [], + "type": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateDiscussionInput", + "description": "Autogenerated input type of CreateDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "categoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateDiscussionPayload", + "description": "Autogenerated return type of CreateDiscussion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateEnterpriseOrganizationInput", + "description": "Autogenerated input type of CreateEnterpriseOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "login", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "profileName", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "billingEmail", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "adminLogins", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateEnterpriseOrganizationPayload", + "description": "Autogenerated return type of CreateEnterpriseOrganization", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateEnvironmentInput", + "description": "Autogenerated input type of CreateEnvironment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateEnvironmentPayload", + "description": "Autogenerated return type of CreateEnvironment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environment", + "args": [], + "type": {"kind": "OBJECT", "name": "Environment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateIpAllowListEntryInput", + "description": "Autogenerated input type of CreateIpAllowListEntry", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "allowListValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isActive", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateIpAllowListEntryPayload", + "description": "Autogenerated return type of CreateIpAllowListEntry", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListEntry", + "args": [], + "type": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateIssueInput", + "description": "Autogenerated input type of CreateIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "assigneeIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "milestoneId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labelIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "projectIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "issueTemplate", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateIssuePayload", + "description": "Autogenerated return type of CreateIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateLabelInput", + "description": "Autogenerated input type of CreateLabel", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "color", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "description", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateLabelPayload", + "description": "Autogenerated return type of CreateLabel", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "label", + "args": [], + "type": {"kind": "OBJECT", "name": "Label", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateLinkedBranchInput", + "description": "Autogenerated input type of CreateLinkedBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "issueId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "oid", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateLinkedBranchPayload", + "description": "Autogenerated return type of CreateLinkedBranch", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "linkedBranch", + "args": [], + "type": {"kind": "OBJECT", "name": "LinkedBranch", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateMigrationSourceInput", + "description": "Autogenerated input type of CreateMigrationSource", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "url", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "accessToken", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MigrationSourceType", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "githubPat", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateMigrationSourcePayload", + "description": "Autogenerated return type of CreateMigrationSource", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "migrationSource", + "args": [], + "type": {"kind": "OBJECT", "name": "MigrationSource", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectInput", + "description": "Autogenerated input type of CreateProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "template", + "type": {"kind": "ENUM", "name": "ProjectTemplate", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateProjectPayload", + "description": "Autogenerated return type of CreateProject", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectV2FieldInput", + "description": "Autogenerated input type of CreateProjectV2Field", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "dataType", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2CustomFieldType", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "singleSelectOptions", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2SingleSelectFieldOptionInput", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateProjectV2FieldPayload", + "description": "Autogenerated return type of CreateProjectV2Field", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2Field", + "args": [], + "type": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateProjectV2Input", + "description": "Autogenerated input type of CreateProjectV2", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "teamId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateProjectV2Payload", + "description": "Autogenerated return type of CreateProjectV2", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreatePullRequestInput", + "description": "Autogenerated input type of CreatePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "baseRefName", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "headRefName", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "headRepositoryId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "maintainerCanModify", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "draft", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatePullRequestPayload", + "description": "Autogenerated return type of CreatePullRequest", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateRefInput", + "description": "Autogenerated input type of CreateRef", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "oid", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateRefPayload", + "description": "Autogenerated return type of CreateRef", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateRepositoryInput", + "description": "Autogenerated input type of CreateRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "description", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "visibility", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "template", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "homepageUrl", + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasWikiEnabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "hasIssuesEnabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "teamId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateRepositoryPayload", + "description": "Autogenerated return type of CreateRepository", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateRepositoryRulesetInput", + "description": "Autogenerated input type of CreateRepositoryRuleset", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "target", + "type": {"kind": "ENUM", "name": "RepositoryRulesetTarget", "ofType": None}, + "defaultValue": None, + }, + { + "name": "rules", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "RepositoryRuleInput", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "conditions", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleConditionsInput", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "enforcement", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RuleEnforcement", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "bypassActors", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRulesetBypassActorInput", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateRepositoryRulesetPayload", + "description": "Autogenerated return type of CreateRepositoryRuleset", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ruleset", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorsListingInput", + "description": "Autogenerated input type of CreateSponsorsListing", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "fiscalHostLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "fiscallyHostedProjectProfileUrl", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "billingCountryOrRegionCode", + "type": {"kind": "ENUM", "name": "SponsorsCountryOrRegionCode", "ofType": None}, + "defaultValue": None, + }, + { + "name": "residenceCountryOrRegionCode", + "type": {"kind": "ENUM", "name": "SponsorsCountryOrRegionCode", "ofType": None}, + "defaultValue": None, + }, + { + "name": "contactEmail", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "fullDescription", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateSponsorsListingPayload", + "description": "Autogenerated return type of CreateSponsorsListing", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsListing", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorsTierInput", + "description": "Autogenerated input type of CreateSponsorsTier", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "isRecurring", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "repositoryId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryOwnerLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryName", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "welcomeMessage", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "description", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "publish", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateSponsorsTierPayload", + "description": "Autogenerated return type of CreateSponsorsTier", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsTier", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorshipInput", + "description": "Autogenerated input type of CreateSponsorship", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "tierId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "amount", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isRecurring", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "receiveEmails", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "privacyLevel", + "type": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, + "defaultValue": "PUBLIC", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateSponsorshipPayload", + "description": "Autogenerated return type of CreateSponsorship", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorship", + "args": [], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorshipsInput", + "description": "Autogenerated input type of CreateSponsorships", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorLogin", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "sponsorships", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "BulkSponsorship", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "receiveEmails", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "privacyLevel", + "type": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, + "defaultValue": "PUBLIC", + }, + { + "name": "recurring", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateSponsorshipsPayload", + "description": "Autogenerated return type of CreateSponsorships", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorables", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateTeamDiscussionCommentInput", + "description": "Autogenerated input type of CreateTeamDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "discussionId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateTeamDiscussionCommentPayload", + "description": "Autogenerated return type of CreateTeamDiscussionComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamDiscussionComment", + "args": [], + "type": {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateTeamDiscussionInput", + "description": "Autogenerated input type of CreateTeamDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "teamId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "private", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateTeamDiscussionPayload", + "description": "Autogenerated return type of CreateTeamDiscussion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamDiscussion", + "args": [], + "type": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateUserListInput", + "description": "Autogenerated input type of CreateUserList", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "description", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isPrivate", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreateUserListPayload", + "description": "Autogenerated return type of CreateUserList", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "list", + "args": [], + "type": {"kind": "OBJECT", "name": "UserList", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedCommitContribution", + "description": "Represents the contribution a user made by committing to a repository.", + "fields": [ + { + "name": "commitCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isRestricted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "occurredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedCommitContributionConnection", + "description": "The connection type for CreatedCommitContribution.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CreatedCommitContributionEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CreatedCommitContribution", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedCommitContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CreatedCommitContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedIssueContribution", + "description": "Represents the contribution a user made on GitHub by opening an issue.", + "fields": [ + { + "name": "isRestricted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "occurredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedIssueContributionConnection", + "description": "The connection type for CreatedIssueContribution.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CreatedIssueContributionEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedIssueContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "CreatedIssueOrRestrictedContribution", + "description": "Represents either a issue the viewer can access or a restricted contribution.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, + {"kind": "OBJECT", "name": "RestrictedContribution", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestContribution", + "description": "Represents the contribution a user made on GitHub by opening a pull request.", + "fields": [ + { + "name": "isRestricted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "occurredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionConnection", + "description": "The connection type for CreatedPullRequestContribution.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "CreatedPullRequestOrRestrictedContribution", + "description": "Represents either a pull request the viewer can access or a restricted contribution.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, + {"kind": "OBJECT", "name": "RestrictedContribution", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContribution", + "description": "Represents the contribution a user made by leaving a review on a pull request.", + "fields": [ + { + "name": "isRestricted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "occurredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReview", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionConnection", + "description": "The connection type for CreatedPullRequestReviewContribution.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContribution", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CreatedPullRequestReviewContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedRepositoryContribution", + "description": "Represents the contribution a user made on GitHub by creating a repository.", + "fields": [ + { + "name": "isRestricted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "occurredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedRepositoryContributionConnection", + "description": "The connection type for CreatedRepositoryContribution.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedRepositoryContributionEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CreatedRepositoryContribution", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "CreatedRepositoryContributionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "CreatedRepositoryContribution", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "CreatedRepositoryOrRestrictedContribution", + "description": "Represents either a repository the viewer can access or a restricted contribution.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CreatedRepositoryContribution", "ofType": None}, + {"kind": "OBJECT", "name": "RestrictedContribution", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "CrossReferencedEvent", + "description": "Represents a mention made by one issue or pull request to another.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCrossRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "referencedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "source", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "target", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "willCloseTarget", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "Date", + "description": "An ISO-8601 encoded date string.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "DateTime", + "description": "An ISO-8601 encoded UTC date string.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeclineTopicSuggestionInput", + "description": "Autogenerated input type of DeclineTopicSuggestion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "reason", + "type": {"kind": "ENUM", "name": "TopicSuggestionDeclineReason", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeclineTopicSuggestionPayload", + "description": "Autogenerated return type of DeclineTopicSuggestion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topic", + "args": [], + "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, + "isDeprecated": True, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DefaultRepositoryPermissionField", + "description": "The possible base permissions for repositories.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + {"name": "READ", "isDeprecated": False, "deprecationReason": None}, + {"name": "WRITE", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Deletable", + "description": "Entities that can be deleted.", + "fields": [ + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "GistComment", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteBranchProtectionRuleInput", + "description": "Autogenerated input type of DeleteBranchProtectionRule", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "branchProtectionRuleId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteBranchProtectionRulePayload", + "description": "Autogenerated return type of DeleteBranchProtectionRule", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteDeploymentInput", + "description": "Autogenerated input type of DeleteDeployment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteDeploymentPayload", + "description": "Autogenerated return type of DeleteDeployment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteDiscussionCommentInput", + "description": "Autogenerated input type of DeleteDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteDiscussionCommentPayload", + "description": "Autogenerated return type of DeleteDiscussionComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comment", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteDiscussionInput", + "description": "Autogenerated input type of DeleteDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteDiscussionPayload", + "description": "Autogenerated return type of DeleteDiscussion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteEnvironmentInput", + "description": "Autogenerated input type of DeleteEnvironment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteEnvironmentPayload", + "description": "Autogenerated return type of DeleteEnvironment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteIpAllowListEntryInput", + "description": "Autogenerated input type of DeleteIpAllowListEntry", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ipAllowListEntryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteIpAllowListEntryPayload", + "description": "Autogenerated return type of DeleteIpAllowListEntry", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListEntry", + "args": [], + "type": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteIssueCommentInput", + "description": "Autogenerated input type of DeleteIssueComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteIssueCommentPayload", + "description": "Autogenerated return type of DeleteIssueComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteIssueInput", + "description": "Autogenerated input type of DeleteIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "issueId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteIssuePayload", + "description": "Autogenerated return type of DeleteIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteLabelInput", + "description": "Autogenerated input type of DeleteLabel", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteLabelPayload", + "description": "Autogenerated return type of DeleteLabel", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteLinkedBranchInput", + "description": "Autogenerated input type of DeleteLinkedBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "linkedBranchId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteLinkedBranchPayload", + "description": "Autogenerated return type of DeleteLinkedBranch", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeletePackageVersionInput", + "description": "Autogenerated input type of DeletePackageVersion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "packageVersionId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeletePackageVersionPayload", + "description": "Autogenerated return type of DeletePackageVersion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "success", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectCardInput", + "description": "Autogenerated input type of DeleteProjectCard", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteProjectCardPayload", + "description": "Autogenerated return type of DeleteProjectCard", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "column", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletedCardId", + "args": [], + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectColumnInput", + "description": "Autogenerated input type of DeleteProjectColumn", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "columnId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteProjectColumnPayload", + "description": "Autogenerated return type of DeleteProjectColumn", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletedColumnId", + "args": [], + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectInput", + "description": "Autogenerated input type of DeleteProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteProjectPayload", + "description": "Autogenerated return type of DeleteProject", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2FieldInput", + "description": "Autogenerated input type of DeleteProjectV2Field", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "fieldId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteProjectV2FieldPayload", + "description": "Autogenerated return type of DeleteProjectV2Field", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2Field", + "args": [], + "type": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2Input", + "description": "Autogenerated input type of DeleteProjectV2", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2ItemInput", + "description": "Autogenerated input type of DeleteProjectV2Item", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "itemId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteProjectV2ItemPayload", + "description": "Autogenerated return type of DeleteProjectV2Item", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletedItemId", + "args": [], + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteProjectV2Payload", + "description": "Autogenerated return type of DeleteProjectV2", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2WorkflowInput", + "description": "Autogenerated input type of DeleteProjectV2Workflow", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "workflowId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteProjectV2WorkflowPayload", + "description": "Autogenerated return type of DeleteProjectV2Workflow", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletedWorkflowId", + "args": [], + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeletePullRequestReviewCommentInput", + "description": "Autogenerated input type of DeletePullRequestReviewComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeletePullRequestReviewCommentPayload", + "description": "Autogenerated return type of DeletePullRequestReviewComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReview", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReviewComment", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeletePullRequestReviewInput", + "description": "Autogenerated input type of DeletePullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeletePullRequestReviewPayload", + "description": "Autogenerated return type of DeletePullRequestReview", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReview", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteRefInput", + "description": "Autogenerated input type of DeleteRef", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "refId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteRefPayload", + "description": "Autogenerated return type of DeleteRef", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteRepositoryRulesetInput", + "description": "Autogenerated input type of DeleteRepositoryRuleset", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryRulesetId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteRepositoryRulesetPayload", + "description": "Autogenerated return type of DeleteRepositoryRuleset", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamDiscussionCommentInput", + "description": "Autogenerated input type of DeleteTeamDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteTeamDiscussionCommentPayload", + "description": "Autogenerated return type of DeleteTeamDiscussionComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamDiscussionInput", + "description": "Autogenerated input type of DeleteTeamDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteTeamDiscussionPayload", + "description": "Autogenerated return type of DeleteTeamDiscussion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteUserListInput", + "description": "Autogenerated input type of DeleteUserList", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "listId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteUserListPayload", + "description": "Autogenerated return type of DeleteUserList", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteVerifiableDomainInput", + "description": "Autogenerated input type of DeleteVerifiableDomain", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeleteVerifiableDomainPayload", + "description": "Autogenerated return type of DeleteVerifiableDomain", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": {"kind": "UNION", "name": "VerifiableDomainOwner", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DemilestonedEvent", + "description": "Represents a 'demilestoned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "milestoneTitle", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "MilestoneItem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DependabotUpdate", + "description": "A Dependabot Update for a dependency in a repository", + "fields": [ + { + "name": "error", + "args": [], + "type": {"kind": "OBJECT", "name": "DependabotUpdateError", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DependabotUpdateError", + "description": "An error produced from a Dependabot Update", + "fields": [ + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "errorType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DependencyGraphDependency", + "description": "A dependency manifest entry", + "fields": [ + { + "name": "hasDependencies", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "packageLabel", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "`packageLabel` will be removed. Use normalized `packageName` field instead. Removal on 2022-10-01 UTC.", + }, + { + "name": "packageManager", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "packageName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requirements", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DependencyGraphDependencyConnection", + "description": "The connection type for DependencyGraphDependency.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DependencyGraphDependencyEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DependencyGraphDependency", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DependencyGraphDependencyEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DependencyGraphDependency", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DependencyGraphEcosystem", + "description": "The possible ecosystems of a dependency graph package.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "RUBYGEMS", "isDeprecated": False, "deprecationReason": None}, + {"name": "NPM", "isDeprecated": False, "deprecationReason": None}, + {"name": "PIP", "isDeprecated": False, "deprecationReason": None}, + {"name": "MAVEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "NUGET", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMPOSER", "isDeprecated": False, "deprecationReason": None}, + {"name": "GO", "isDeprecated": False, "deprecationReason": None}, + {"name": "ACTIONS", "isDeprecated": False, "deprecationReason": None}, + {"name": "RUST", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUB", "isDeprecated": False, "deprecationReason": None}, + {"name": "SWIFT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DependencyGraphManifest", + "description": "Dependency manifest for a repository", + "fields": [ + { + "name": "blobPath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dependencies", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "DependencyGraphDependencyConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dependenciesCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "exceedsMaxSize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "filename", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parseable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DependencyGraphManifestConnection", + "description": "The connection type for DependencyGraphManifest.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DependencyGraphManifestEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DependencyGraphManifest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DependencyGraphManifestEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DependencyGraphManifest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeployKey", + "description": "A repository deploy key.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "key", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "readOnly", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "verified", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeployKeyConnection", + "description": "The connection type for DeployKey.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeployKeyEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeployKey", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeployKeyEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DeployKey", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeployedEvent", + "description": "Represents a 'deployed' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployment", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Deployment", + "description": "Represents triggered deployment instance.", + "fields": [ + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitOid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environment", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "latestEnvironment", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "latestStatus", + "args": [], + "type": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "originalEnvironment", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "payload", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": {"kind": "ENUM", "name": "DeploymentState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "statuses", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "DeploymentStatusConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "task", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentConnection", + "description": "The connection type for Deployment.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentEnvironmentChangedEvent", + "description": "Represents a 'deployment_environment_changed' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deploymentStatus", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DeploymentOrder", + "description": "Ordering options for deployment connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DeploymentOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DeploymentOrderField", + "description": "Properties by which deployment connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentProtectionRule", + "description": "A protection rule.", + "fields": [ + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "preventSelfReview", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentReviewerConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "timeout", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "type", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DeploymentProtectionRuleType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentProtectionRuleConnection", + "description": "The connection type for DeploymentProtectionRule.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentProtectionRuleEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentProtectionRule", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentProtectionRuleEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DeploymentProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DeploymentProtectionRuleType", + "description": "The possible protection rule types.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "REQUIRED_REVIEWERS", "isDeprecated": False, "deprecationReason": None}, + {"name": "WAIT_TIMER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentRequest", + "description": "A request to deploy a workflow run to an environment.", + "fields": [ + { + "name": "currentUserCanApprove", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environment", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Environment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentReviewerConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "waitTimer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "waitTimerStartedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentRequestConnection", + "description": "The connection type for DeploymentRequest.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentRequestEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentRequestEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DeploymentRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentReview", + "description": "A deployment review.", + "fields": [ + { + "name": "comment", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnvironmentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DeploymentReviewState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentReviewConnection", + "description": "The connection type for DeploymentReview.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentReviewEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentReview", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentReviewEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DeploymentReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DeploymentReviewState", + "description": "The possible states for a deployment review.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "APPROVED", "isDeprecated": False, "deprecationReason": None}, + {"name": "REJECTED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "DeploymentReviewer", + "description": "Users and teams.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Team", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "DeploymentReviewerConnection", + "description": "The connection type for DeploymentReviewer.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentReviewerEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "DeploymentReviewer", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentReviewerEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "DeploymentReviewer", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DeploymentState", + "description": "The possible states in which a deployment can be.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ABANDONED", "isDeprecated": False, "deprecationReason": None}, + {"name": "ACTIVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "DESTROYED", "isDeprecated": False, "deprecationReason": None}, + {"name": "ERROR", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, + {"name": "INACTIVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentStatus", + "description": "Describes the status of a given deployment attempt.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployment", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environment", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environmentUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "logUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DeploymentStatusState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentStatusConnection", + "description": "The connection type for DeploymentStatus.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentStatusEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DeploymentStatusEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DeploymentStatusState", + "description": "The possible states for a deployment status.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, + {"name": "INACTIVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "ERROR", "isDeprecated": False, "deprecationReason": None}, + {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DequeuePullRequestInput", + "description": "Autogenerated input type of DequeuePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DequeuePullRequestPayload", + "description": "Autogenerated return type of DequeuePullRequest", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeQueueEntry", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DiffSide", + "description": "The possible sides of a diff.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "LEFT", "isDeprecated": False, "deprecationReason": None}, + {"name": "RIGHT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DisablePullRequestAutoMergeInput", + "description": "Autogenerated input type of DisablePullRequestAutoMerge", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DisablePullRequestAutoMergePayload", + "description": "Autogenerated return type of DisablePullRequestAutoMerge", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DisconnectedEvent", + "description": "Represents a 'disconnected' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCrossRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "source", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Discussion", + "description": "A discussion in a repository.", + "fields": [ + { + "name": "activeLockReason", + "args": [], + "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "answer", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "answerChosenAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "answerChosenBy", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "category", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isAnswered", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labels", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "locked", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "poll", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionPoll", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stateReason", + "args": [], + "type": {"kind": "ENUM", "name": "DiscussionStateReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "upvoteCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanClose", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReopen", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSubscribe", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpvote", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasUpvoted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerSubscription", + "args": [], + "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Closable", "ofType": None}, + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, + {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "Votable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionCategory", + "description": "A category for discussions in a repository.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "emoji", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "emojiHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isAnswerable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "slug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionCategoryConnection", + "description": "The connection type for DiscussionCategory.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCategoryEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionCategoryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DiscussionCloseReason", + "description": "The possible reasons for closing a discussion.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "RESOLVED", "isDeprecated": False, "deprecationReason": None}, + {"name": "OUTDATED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DUPLICATE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionComment", + "description": "A comment on a discussion.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isAnswer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMinimized", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizedReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "replies", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "replyTo", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "upvoteCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMarkAsAnswer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMinimize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUnmarkAsAnswer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpvote", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasUpvoted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + {"kind": "INTERFACE", "name": "Votable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionCommentConnection", + "description": "The connection type for DiscussionComment.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCommentEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionConnection", + "description": "The connection type for Discussion.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DiscussionOrder", + "description": "Ways in which lists of discussions can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DiscussionOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DiscussionOrderField", + "description": "Properties by which discussion connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionPoll", + "description": "A poll for a discussion.", + "fields": [ + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "options", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "How to order the options for the discussion poll.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DiscussionPollOptionOrder", + "ofType": None, + }, + "defaultValue": "{field: AUTHORED_ORDER, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "DiscussionPollOptionConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "question", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalVoteCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanVote", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasVoted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionPollOption", + "description": "An option for a discussion poll.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "option", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "poll", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionPoll", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalVoteCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasVoted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionPollOptionConnection", + "description": "The connection type for DiscussionPollOption.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionPollOptionEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionPollOption", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DiscussionPollOptionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionPollOption", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DiscussionPollOptionOrder", + "description": "Ordering options for discussion poll option connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DiscussionPollOptionOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DiscussionPollOptionOrderField", + "description": "Properties by which discussion poll option connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "AUTHORED_ORDER", "isDeprecated": False, "deprecationReason": None}, + {"name": "VOTE_COUNT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DiscussionState", + "description": "The possible states of a discussion.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DiscussionStateReason", + "description": "The possible state reasons of a discussion.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "RESOLVED", "isDeprecated": False, "deprecationReason": None}, + {"name": "OUTDATED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DUPLICATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REOPENED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DismissPullRequestReviewInput", + "description": "Autogenerated input type of DismissPullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DismissPullRequestReviewPayload", + "description": "Autogenerated return type of DismissPullRequestReview", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReview", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "DismissReason", + "description": "The possible reasons that a Dependabot alert was dismissed.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "FIX_STARTED", "isDeprecated": False, "deprecationReason": None}, + {"name": "NO_BANDWIDTH", "isDeprecated": False, "deprecationReason": None}, + {"name": "TOLERABLE_RISK", "isDeprecated": False, "deprecationReason": None}, + {"name": "INACCURATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "NOT_USED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DismissRepositoryVulnerabilityAlertInput", + "description": "Autogenerated input type of DismissRepositoryVulnerabilityAlert", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryVulnerabilityAlertId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "dismissReason", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DismissReason", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DismissRepositoryVulnerabilityAlertPayload", + "description": "Autogenerated return type of DismissRepositoryVulnerabilityAlert", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryVulnerabilityAlert", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "DraftIssue", + "description": "A draft issue within a project.", + "fields": [ + { + "name": "assignees", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2Items", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsV2", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DraftPullRequestReviewComment", + "description": "Specifies a review comment to be left with a Pull Request Review.", + "fields": None, + "inputFields": [ + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "position", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "DraftPullRequestReviewThread", + "description": "Specifies a review comment thread to be left with a Pull Request Review.", + "fields": None, + "inputFields": [ + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "line", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "side", + "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, + "defaultValue": "RIGHT", + }, + { + "name": "startLine", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "startSide", + "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, + "defaultValue": "RIGHT", + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnablePullRequestAutoMergeInput", + "description": "Autogenerated input type of EnablePullRequestAutoMerge", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "commitHeadline", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "commitBody", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "mergeMethod", + "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, + "defaultValue": "MERGE", + }, + { + "name": "authorEmail", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "expectedHeadOid", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnablePullRequestAutoMergePayload", + "description": "Autogenerated return type of EnablePullRequestAutoMerge", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnqueuePullRequestInput", + "description": "Autogenerated input type of EnqueuePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "jump", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "expectedHeadOid", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnqueuePullRequestPayload", + "description": "Autogenerated return type of EnqueuePullRequest", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeQueueEntry", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Enterprise", + "description": "An account to manage multiple organizations with consolidated policy and billing.", + "fields": [ + { + "name": "announcement", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "announcementExpiresAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "announcementUserDismissible", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "billingEmail", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "billingInfo", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseBillingInfo", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "descriptionHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "location", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "members", + "args": [ + { + "name": "organizationLogins", + "description": "Only return members within the organizations with these logins", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for members returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseMemberOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "role", + "description": "The role of the user in the enterprise organization or server.", + "type": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "deployment", + "description": "Only return members within the selected GitHub Enterprise deployment", + "type": {"kind": "ENUM", "name": "EnterpriseUserDeployment", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasTwoFactorEnabled", + "description": "Only return members with this two-factor authentication status. Does not include members who only have an account on a GitHub Enterprise Server instance.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseMemberConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizations", + "args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "viewerOrganizationRole", + "description": "The viewer's role in an organization.", + "type": {"kind": "ENUM", "name": "RoleInOrganization", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ownerInfo", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseOwnerInfo", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "slug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerIsAdmin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "websiteUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AnnouncementBanner", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseAdministratorEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorEdge", + "description": "A User who is an administrator of an enterprise.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "role", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "description": "An invitation for a user to become an owner or billing manager of an enterprise.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitee", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "inviter", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "role", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitationConnection", + "description": "The connection type for EnterpriseAdministratorInvitation.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitationEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitation", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseAdministratorInvitationOrder", + "description": "Ordering options for enterprise administrator invitation connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseAdministratorInvitationOrderField", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseAdministratorInvitationOrderField", + "description": "Properties by which enterprise administrator invitation connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "description": "The possible administrator roles in an enterprise account.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, + {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", + "description": "The possible values for the enterprise allow private repository forking policy value.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ENTERPRISE_ORGANIZATIONS", "isDeprecated": False, "deprecationReason": None}, + {"name": "SAME_ORGANIZATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "SAME_ORGANIZATION_USER_ACCOUNTS", "isDeprecated": False, "deprecationReason": None}, + { + "name": "ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS", + "isDeprecated": False, + "deprecationReason": None, + }, + {"name": "USER_ACCOUNTS", "isDeprecated": False, "deprecationReason": None}, + {"name": "EVERYWHERE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "EnterpriseAuditEntryData", + "description": "Metadata for an audit entry containing enterprise account information.", + "fields": [ + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "EnterpriseBillingInfo", + "description": "Enterprise billing information visible to enterprise billing managers and owners.", + "fields": [ + { + "name": "allLicensableUsersCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assetPacks", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bandwidthQuota", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bandwidthUsage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bandwidthUsagePercentage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "storageQuota", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "storageUsage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "storageUsagePercentage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalAvailableLicenses", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalLicenses", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseConnection", + "description": "The connection type for Enterprise.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseDefaultRepositoryPermissionSettingValue", + "description": "The possible values for the enterprise base repository permission setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NO_POLICY", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "WRITE", "isDeprecated": False, "deprecationReason": None}, + {"name": "READ", "isDeprecated": False, "deprecationReason": None}, + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "description": "The possible values for an enabled/disabled enterprise setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "NO_POLICY", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseEnabledSettingValue", + "description": "The possible values for an enabled/no policy enterprise setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "NO_POLICY", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseFailedInvitationConnection", + "description": "The connection type for OrganizationInvitation.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseFailedInvitationEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalUniqueUserCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseFailedInvitationEdge", + "description": "A failed invitation to be a member in an enterprise organization.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseIdentityProvider", + "description": "An identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", + "fields": [ + { + "name": "digestMethod", + "args": [], + "type": {"kind": "ENUM", "name": "SamlDigestAlgorithm", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "externalIdentities", + "args": [ + { + "name": "membersOnly", + "description": "Filter to external identities with valid org membership only", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "login", + "description": "Filter to external identities with the users login", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userName", + "description": "Filter to external identities with the users userName/NameID attribute", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ExternalIdentityConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "idpCertificate", + "args": [], + "type": {"kind": "SCALAR", "name": "X509Certificate", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issuer", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "recoveryCodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signatureMethod", + "args": [], + "type": {"kind": "ENUM", "name": "SamlSignatureAlgorithm", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ssoUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "EnterpriseMember", + "description": "An object that is a member of an enterprise.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "EnterpriseUserAccount", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "EnterpriseMemberConnection", + "description": "The connection type for EnterpriseMember.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseMemberEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "EnterpriseMember", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseMemberEdge", + "description": "A User who is a member of an enterprise through one or more organizations.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "EnterpriseMember", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseMemberOrder", + "description": "Ordering options for enterprise member connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "EnterpriseMemberOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseMemberOrderField", + "description": "Properties by which enterprise member connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", + "description": "The possible values for the enterprise members can create repositories setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NO_POLICY", "isDeprecated": False, "deprecationReason": None}, + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseMembersCanMakePurchasesSettingValue", + "description": "The possible values for the members can make purchases setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseMembershipType", + "description": "The possible values we have for filtering Platform::Objects::User#enterprises.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, + {"name": "ORG_MEMBERSHIP", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseOrder", + "description": "Ordering options for enterprises.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "EnterpriseOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseOrderField", + "description": "Properties by which enterprise connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "NAME", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseOrganizationMembershipConnection", + "description": "The connection type for Organization.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseOrganizationMembershipEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseOrganizationMembershipEdge", + "description": "An enterprise organization that a user is a member of.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "role", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseOutsideCollaboratorConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseOutsideCollaboratorEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseOutsideCollaboratorEdge", + "description": "A User who is an outside collaborator of an enterprise through one or more organizations.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositories", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories.", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": "{field: NAME, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfoConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseOwnerInfo", + "description": "Enterprise information visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", + "fields": [ + { + "name": "admins", + "args": [ + { + "name": "organizationLogins", + "description": "Only return members within the organizations with these logins", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "role", + "description": "The role to filter by.", + "type": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for administrators returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseMemberOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "hasTwoFactorEnabled", + "description": "Only return administrators with this two-factor authentication status.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "affiliatedUsersWithTwoFactorDisabled", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "affiliatedUsersWithTwoFactorDisabledExist", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "allowPrivateRepositoryForkingSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "allowPrivateRepositoryForkingSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "allowPrivateRepositoryForkingSettingPolicyValue", + "args": [], + "type": { + "kind": "ENUM", + "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "defaultRepositoryPermissionSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseDefaultRepositoryPermissionSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "defaultRepositoryPermissionSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The permission to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "DefaultRepositoryPermissionField", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "domains", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isVerified", + "description": "Filter whether or not the domain is verified.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "isApproved", + "description": "Filter whether or not the domain is approved.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "orderBy", + "description": "Ordering options for verifiable domains returned.", + "type": {"kind": "INPUT_OBJECT", "name": "VerifiableDomainOrder", "ofType": None}, + "defaultValue": "{field: DOMAIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "VerifiableDomainConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseServerInstallations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "connectedOnly", + "description": "Whether or not to only return installations discovered via GitHub Connect.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orderBy", + "description": "Ordering options for Enterprise Server installations returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerInstallationOrder", + "ofType": None, + }, + "defaultValue": "{field: HOST_NAME, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "failedInvitations", + "args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseFailedInvitationConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListEnabledSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IpAllowListEnabledSettingValue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListEntries", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for IP allow list entries returned.", + "type": {"kind": "INPUT_OBJECT", "name": "IpAllowListEntryOrder", "ofType": None}, + "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IpAllowListEntryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListForInstalledAppsEnabledSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListForInstalledAppsEnabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isUpdatingDefaultRepositoryPermission", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isUpdatingTwoFactorRequirement", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanChangeRepositoryVisibilitySetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanChangeRepositoryVisibilitySettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanCreateInternalRepositoriesSetting", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanCreatePrivateRepositoriesSetting", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanCreatePublicRepositoriesSetting", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanCreateRepositoriesSetting", + "args": [], + "type": { + "kind": "ENUM", + "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanCreateRepositoriesSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrganizationMembersCanCreateRepositoriesSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanDeleteIssuesSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanDeleteIssuesSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanDeleteRepositoriesSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanDeleteRepositoriesSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanInviteCollaboratorsSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanInviteCollaboratorsSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanMakePurchasesSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseMembersCanMakePurchasesSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanUpdateProtectedBranchesSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanUpdateProtectedBranchesSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanViewDependencyInsightsSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanViewDependencyInsightsSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "notificationDeliveryRestrictionEnabledSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "NotificationRestrictionSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oidcProvider", + "args": [], + "type": {"kind": "OBJECT", "name": "OIDCProvider", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationProjectsSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationProjectsSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "outsideCollaborators", + "args": [ + { + "name": "login", + "description": "The login of one specific outside collaborator.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for outside collaborators returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseMemberOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "visibility", + "description": "Only return outside collaborators on repositories with this visibility.", + "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasTwoFactorEnabled", + "description": "Only return outside collaborators with this two-factor authentication status.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "organizationLogins", + "description": "Only return outside collaborators within the organizations with these logins", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseOutsideCollaboratorConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pendingAdminInvitations", + "args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pending enterprise administrator invitations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseAdministratorInvitationOrder", + "ofType": None, + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + { + "name": "role", + "description": "The role to filter by.", + "type": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseAdministratorInvitationConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pendingCollaboratorInvitations", + "args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pending repository collaborator invitations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryInvitationOrder", + "ofType": None, + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryInvitationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pendingMemberInvitations", + "args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationLogins", + "description": "Only return invitations within the organizations with these logins", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "invitationSource", + "description": "Only return invitations matching this invitation source", + "type": {"kind": "ENUM", "name": "OrganizationInvitationSource", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterprisePendingMemberInvitationConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryProjectsSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryProjectsSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "samlIdentityProvider", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "samlIdentityProviderSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IdentityProviderConfigurationState", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "supportEntitlements", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for support entitlement users returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseMemberOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseMemberConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamDiscussionsSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamDiscussionsSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "twoFactorRequiredSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "EnterpriseEnabledSettingValue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "twoFactorRequiredSettingOrganizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "value", + "description": "The setting value to find organizations for.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations with this setting.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterprisePendingMemberInvitationConnection", + "description": "The connection type for OrganizationInvitation.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterprisePendingMemberInvitationEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalUniqueUserCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterprisePendingMemberInvitationEdge", + "description": "An invitation to be a member in an enterprise organization.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfo", + "description": "A subset of repository information queryable from an enterprise.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPrivate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nameWithOwner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfoConnection", + "description": "The connection type for EnterpriseRepositoryInfo.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseRepositoryInfoEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseRepositoryInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseRepositoryInfoEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseRepositoryInfo", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallation", + "description": "An Enterprise Server installation.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "customerName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hostName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isConnected", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userAccounts", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for Enterprise Server user accounts returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountOrder", + "ofType": None, + }, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userAccountsUploads", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for Enterprise Server user accounts uploads returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountsUploadOrder", + "ofType": None, + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUploadConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationConnection", + "description": "The connection type for EnterpriseServerInstallation.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationMembershipConnection", + "description": "The connection type for EnterpriseServerInstallation.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationMembershipEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationMembershipEdge", + "description": "An Enterprise Server installation that a user is a member of.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "role", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerInstallationOrder", + "description": "Ordering options for Enterprise Server installation connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerInstallationOrderField", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseServerInstallationOrderField", + "description": "Properties by which Enterprise Server installation connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "HOST_NAME", "isDeprecated": False, "deprecationReason": None}, + {"name": "CUSTOMER_NAME", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccount", + "description": "A user account on an Enterprise Server installation.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "emails", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for Enterprise Server user account emails returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountEmailOrder", + "ofType": None, + }, + "defaultValue": "{field: EMAIL, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmailConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseServerInstallation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSiteAdmin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "profileName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "remoteCreatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "remoteUserId", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountConnection", + "description": "The connection type for EnterpriseServerUserAccount.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseServerUserAccountEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseServerUserAccount", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseServerUserAccount", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmail", + "description": "An email belonging to a user account on an Enterprise Server installation.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPrimary", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userAccount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseServerUserAccount", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmailConnection", + "description": "The connection type for EnterpriseServerUserAccountEmail.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmailEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmail", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountEmailEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseServerUserAccountEmail", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountEmailOrder", + "description": "Ordering options for Enterprise Server user account email connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountEmailOrderField", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountEmailOrderField", + "description": "Properties by which Enterprise Server user account email connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "EMAIL", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountOrder", + "description": "Ordering options for Enterprise Server user account connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountOrderField", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountOrderField", + "description": "Properties by which Enterprise Server user account connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "REMOTE_CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUpload", + "description": "A user accounts upload from an Enterprise Server installation.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseServerInstallation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "syncState", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountsUploadSyncState", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUploadConnection", + "description": "The connection type for EnterpriseServerUserAccountsUpload.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUploadEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUpload", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseServerUserAccountsUploadEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseServerUserAccountsUpload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerUserAccountsUploadOrder", + "description": "Ordering options for Enterprise Server user accounts upload connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountsUploadOrderField", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountsUploadOrderField", + "description": "Properties by which Enterprise Server user accounts upload connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseServerUserAccountsUploadSyncState", + "description": "Synchronization state of the Enterprise Server user accounts upload", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnterpriseUserAccount", + "description": "An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.", + "fields": [ + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseInstallations", + "args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for installations returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnterpriseServerInstallationOrder", + "ofType": None, + }, + "defaultValue": "{field: HOST_NAME, direction: ASC}", + }, + { + "name": "role", + "description": "The role of the user in the installation.", + "type": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseServerInstallationMembershipConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizations", + "args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for organizations returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "role", + "description": "The role of the user in the enterprise organization.", + "type": { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "EnterpriseOrganizationMembershipConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseUserAccountMembershipRole", + "description": "The possible roles for enterprise membership.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNAFFILIATED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnterpriseUserDeployment", + "description": "The possible GitHub Enterprise deployments where this user can exist.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CLOUD", "isDeprecated": False, "deprecationReason": None}, + {"name": "SERVER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Environment", + "description": "An environment.", + "fields": [ + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "protectionRules", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentProtectionRuleConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnvironmentConnection", + "description": "The connection type for Environment.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnvironmentEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Environment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "EnvironmentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Environment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "EnvironmentOrderField", + "description": "Properties by which environments connections can be ordered", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "NAME", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "Environments", + "description": "Ordering options for environments", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "EnvironmentOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ExternalIdentity", + "description": "An external identity provisioned by SAML SSO or SCIM. If SAML is configured on the organization, the external identity is visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members. If SAML is configured on the enterprise, the external identity is visible to (1) enterprise owners, (2) enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", + "fields": [ + { + "name": "guid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationInvitation", + "args": [], + "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "samlIdentity", + "args": [], + "type": {"kind": "OBJECT", "name": "ExternalIdentitySamlAttributes", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "scimIdentity", + "args": [], + "type": {"kind": "OBJECT", "name": "ExternalIdentityScimAttributes", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ExternalIdentityAttribute", + "description": "An attribute for the External Identity attributes collection", + "fields": [ + { + "name": "metadata", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "value", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ExternalIdentityConnection", + "description": "The connection type for ExternalIdentity.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ExternalIdentityEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ExternalIdentity", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ExternalIdentityEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ExternalIdentity", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ExternalIdentitySamlAttributes", + "description": "SAML attributes for the External Identity", + "fields": [ + { + "name": "attributes", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ExternalIdentityAttribute", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "emails", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserEmailMetadata", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "familyName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "givenName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "groups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nameId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "username", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ExternalIdentityScimAttributes", + "description": "SCIM attributes for the External Identity", + "fields": [ + { + "name": "emails", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserEmailMetadata", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "familyName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "givenName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "groups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "username", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "FileAddition", + "description": "A command to add a file at the given path with the given contents as part of a commit. Any existing file at that that path will be replaced.", + "fields": None, + "inputFields": [ + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "contents", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "FileChanges", + "fields": None, + "inputFields": [ + { + "name": "deletions", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "FileDeletion", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + { + "name": "additions", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "FileAddition", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "FileDeletion", + "description": "A command to delete the file at the given path as part of a commit.", + "fields": None, + "inputFields": [ + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "FileViewedState", + "description": "The possible viewed states of a file .", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DISMISSED", "isDeprecated": False, "deprecationReason": None}, + {"name": "VIEWED", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNVIEWED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "Represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "FollowOrganizationInput", + "description": "Autogenerated input type of FollowOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "FollowOrganizationPayload", + "description": "Autogenerated return type of FollowOrganization", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "FollowUserInput", + "description": "Autogenerated input type of FollowUser", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "FollowUserPayload", + "description": "Autogenerated return type of FollowUser", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "FollowerConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "FollowingConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "FundingLink", + "description": "A funding platform link for a repository.", + "fields": [ + { + "name": "platform", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "FundingPlatform", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "FundingPlatform", + "description": "The possible funding platforms for repository funding links.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "GITHUB", "isDeprecated": False, "deprecationReason": None}, + {"name": "PATREON", "isDeprecated": False, "deprecationReason": None}, + {"name": "OPEN_COLLECTIVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "KO_FI", "isDeprecated": False, "deprecationReason": None}, + {"name": "TIDELIFT", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMUNITY_BRIDGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "LIBERAPAY", "isDeprecated": False, "deprecationReason": None}, + {"name": "ISSUEHUNT", "isDeprecated": False, "deprecationReason": None}, + {"name": "LFX_CROWDFUNDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "POLAR", "isDeprecated": False, "deprecationReason": None}, + {"name": "BUY_ME_A_COFFEE", "isDeprecated": False, "deprecationReason": None}, + {"name": "CUSTOM", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GenericHovercardContext", + "description": "A generic hovercard context with a message and icon", + "fields": [ + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "octicon", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Gist", + "description": "A Gist.", + "fields": [ + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GistCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "files", + "args": [ + { + "name": "limit", + "description": "The maximum number of files to return.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "10", + }, + { + "name": "oid", + "description": "The oid of the files to return", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GistFile", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "forks", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for gists returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "GistOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GistConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isFork", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPublic", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pushedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stargazerCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stargazers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StargazerConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasStarred", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GistComment", + "description": "Represents a comment on an Gist.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "gist", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Gist", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMinimized", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizedReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMinimize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GistCommentConnection", + "description": "The connection type for GistComment.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GistCommentEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GistComment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GistCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "GistComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GistConnection", + "description": "The connection type for Gist.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GistEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Gist", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GistEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Gist", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GistFile", + "description": "A file in a gist.", + "fields": [ + { + "name": "encodedName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "encoding", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "extension", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isImage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isTruncated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "language", + "args": [], + "type": {"kind": "OBJECT", "name": "Language", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "size", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "text", + "args": [ + { + "name": "truncate", + "description": "Optionally truncate the returned file to this length.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "GistOrder", + "description": "Ordering options for gist connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "GistOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "GistOrderField", + "description": "Properties by which gist connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUSHED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "GistPrivacy", + "description": "The privacy of a Gist", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "SECRET", "isDeprecated": False, "deprecationReason": None}, + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GitActor", + "description": "Represents an actor in a Git commit (ie. an author or committer).", + "fields": [ + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "date", + "args": [], + "type": {"kind": "SCALAR", "name": "GitTimestamp", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GitActorConnection", + "description": "The connection type for GitActor.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GitActorEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GitActorEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GitHubMetadata", + "description": "Represents information about the GitHub instance.", + "fields": [ + { + "name": "gitHubServicesSha", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "gitIpAddresses", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "githubEnterpriseImporterIpAddresses", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hookIpAddresses", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "importerIpAddresses", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPasswordAuthenticationVerifiable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pagesIpAddresses", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "GitObject", + "description": "Represents a Git object.", + "fields": [ + { + "name": "abbreviatedOid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Blob", "ofType": None}, + {"kind": "OBJECT", "name": "Commit", "ofType": None}, + {"kind": "OBJECT", "name": "Tag", "ofType": None}, + {"kind": "OBJECT", "name": "Tree", "ofType": None}, + ], + }, + { + "kind": "SCALAR", + "name": "GitObjectID", + "description": "A Git object ID.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "GitRefname", + "description": "A fully qualified reference name (e.g. `refs/heads/master`).", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "GitSSHRemote", + "description": "Git SSH string", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "GitSignature", + "description": "Information about a signature (GPG or S/MIME) on a Commit or Tag.", + "fields": [ + { + "name": "email", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isValid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "payload", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signature", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "wasSignedByGitHub", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "GpgSignature", "ofType": None}, + {"kind": "OBJECT", "name": "SmimeSignature", "ofType": None}, + {"kind": "OBJECT", "name": "SshSignature", "ofType": None}, + {"kind": "OBJECT", "name": "UnknownSignature", "ofType": None}, + ], + }, + { + "kind": "ENUM", + "name": "GitSignatureState", + "description": "The state of a Git signature.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "VALID", "isDeprecated": False, "deprecationReason": None}, + {"name": "INVALID", "isDeprecated": False, "deprecationReason": None}, + {"name": "MALFORMED_SIG", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNKNOWN_KEY", "isDeprecated": False, "deprecationReason": None}, + {"name": "BAD_EMAIL", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNVERIFIED_EMAIL", "isDeprecated": False, "deprecationReason": None}, + {"name": "NO_USER", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNKNOWN_SIG_TYPE", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNSIGNED", "isDeprecated": False, "deprecationReason": None}, + {"name": "GPGVERIFY_UNAVAILABLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "GPGVERIFY_ERROR", "isDeprecated": False, "deprecationReason": None}, + {"name": "NOT_SIGNING_KEY", "isDeprecated": False, "deprecationReason": None}, + {"name": "EXPIRED_KEY", "isDeprecated": False, "deprecationReason": None}, + {"name": "OCSP_PENDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "OCSP_ERROR", "isDeprecated": False, "deprecationReason": None}, + {"name": "BAD_CERT", "isDeprecated": False, "deprecationReason": None}, + {"name": "OCSP_REVOKED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "GitTimestamp", + "description": "An ISO-8601 encoded date string. Unlike the DateTime type, GitTimestamp is not converted in UTC.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GpgSignature", + "description": "Represents a GPG signature on a Commit or Tag.", + "fields": [ + { + "name": "email", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isValid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "keyId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "payload", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signature", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "wasSignedByGitHub", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "GitSignature", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "GrantEnterpriseOrganizationsMigratorRoleInput", + "description": "Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "login", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GrantEnterpriseOrganizationsMigratorRolePayload", + "description": "Autogenerated return type of GrantEnterpriseOrganizationsMigratorRole", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "GrantMigratorRoleInput", + "description": "Autogenerated input type of GrantMigratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "actor", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "actorType", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ActorType", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "GrantMigratorRolePayload", + "description": "Autogenerated return type of GrantMigratorRole", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "success", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "HTML", + "description": "A string containing HTML code.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "HeadRefDeletedEvent", + "description": "Represents a 'head_ref_deleted' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headRef", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headRefName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "HeadRefForcePushedEvent", + "description": "Represents a 'head_ref_force_pushed' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "afterCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "beforeCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "HeadRefRestoredEvent", + "description": "Represents a 'head_ref_restored' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Hovercard", + "description": "Detail needed to display a hovercard for a user", + "fields": [ + { + "name": "contexts", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "HovercardContext", + "description": "An individual line of a hovercard", + "fields": [ + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "octicon", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "GenericHovercardContext", "ofType": None}, + {"kind": "OBJECT", "name": "OrganizationTeamsHovercardContext", "ofType": None}, + {"kind": "OBJECT", "name": "OrganizationsHovercardContext", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewStatusHovercardContext", "ofType": None}, + {"kind": "OBJECT", "name": "ViewerHovercardContext", "ofType": None}, + ], + }, + { + "kind": "SCALAR", + "name": "ID", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IdentityProviderConfigurationState", + "description": "The possible states in which authentication can be configured with an identity provider.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ENFORCED", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONFIGURED", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNCONFIGURED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ImportProjectInput", + "description": "Autogenerated input type of ImportProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerName", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "public", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "columnImports", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectColumnImport", + "ofType": None, + }, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ImportProjectPayload", + "description": "Autogenerated return type of ImportProject", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "InviteEnterpriseAdminInput", + "description": "Autogenerated input type of InviteEnterpriseAdmin", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "invitee", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "email", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "role", + "type": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "InviteEnterpriseAdminPayload", + "description": "Autogenerated return type of InviteEnterpriseAdmin", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitation", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IpAllowListEnabledSettingValue", + "description": "The possible values for the IP allow list enabled setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IpAllowListEntry", + "description": "An IP address or range of addresses that is allowed to access an owner's resources.", + "fields": [ + { + "name": "allowListValue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isActive", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "IpAllowListOwner", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IpAllowListEntryConnection", + "description": "The connection type for IpAllowListEntry.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IpAllowListEntryEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IpAllowListEntryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "IpAllowListEntryOrder", + "description": "Ordering options for IP allow list entry connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IpAllowListEntryOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IpAllowListEntryOrderField", + "description": "Properties by which IP allow list entry connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ALLOW_LIST_VALUE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IpAllowListForInstalledAppsEnabledSettingValue", + "description": "The possible values for the IP allow list configuration for installed GitHub Apps setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "IpAllowListOwner", + "description": "Types that can own an IP allow list.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "App", "ofType": None}, + {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "Issue", + "description": "An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.", + "fields": [ + { + "name": "activeLockReason", + "args": [], + "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assignees", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comments", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for issue comments returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueCommentOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDatabaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hovercard", + "args": [ + { + "name": "includeNotificationContexts", + "description": "Whether or not to include notification contexts", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Hovercard", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPinned", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isReadByViewer", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labels", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "linkedBranches", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "LinkedBranchConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "locked", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "milestone", + "args": [], + "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "participants", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectCards", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "archivedStates", + "description": "A list of archived states to filter the cards by", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectCardArchivedState", "ofType": None}, + }, + "defaultValue": "[ARCHIVED, NOT_ARCHIVED]", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectCardConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectItems", + "args": [ + { + "name": "includeArchived", + "description": "Include archived items.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsV2", + "args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, + "defaultValue": "{field: NUMBER, direction: DESC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stateReason", + "args": [], + "type": {"kind": "ENUM", "name": "IssueStateReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "timeline", + "args": [ + { + "name": "since", + "description": "Allows filtering timeline events by a `since` timestamp.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueTimelineConnection", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "`timeline` will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.", + }, + { + "name": "timelineItems", + "args": [ + { + "name": "since", + "description": "Filter timeline items by a `since` timestamp.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "skip", + "description": "Skips the first _n_ elements in the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "itemTypes", + "description": "Filter timeline items by type.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IssueTimelineItemsItemType", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueTimelineItemsConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "titleHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "trackedInIssues", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "trackedIssues", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "trackedIssuesCount", + "args": [ + { + "name": "states", + "description": "Limit the count to tracked issues with the specified states.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "TrackedIssueStates", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanClose", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReopen", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSubscribe", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerSubscription", + "args": [], + "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerThreadSubscriptionFormAction", + "args": [], + "type": {"kind": "ENUM", "name": "ThreadSubscriptionFormAction", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerThreadSubscriptionStatus", + "args": [], + "type": {"kind": "ENUM", "name": "ThreadSubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, + {"kind": "INTERFACE", "name": "Closable", "ofType": None}, + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, + {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + {"kind": "INTERFACE", "name": "SubscribableThread", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IssueClosedStateReason", + "description": "The possible state reasons of a closed issue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, + {"name": "NOT_PLANNED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueComment", + "description": "Represents a comment on an Issue.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDatabaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMinimized", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizedReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMinimize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueCommentConnection", + "description": "The connection type for IssueComment.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueCommentEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueCommentOrder", + "description": "Ways in which lists of issue comments can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IssueCommentOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IssueCommentOrderField", + "description": "Properties by which issue comment connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueConnection", + "description": "The connection type for Issue.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueContributionsByRepository", + "description": "This aggregates issues opened by a user within one repository.", + "fields": [ + { + "name": "contributions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, + "defaultValue": "{direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIssueContributionConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueFilters", + "description": "Ways in which to filter lists of issues.", + "fields": None, + "inputFields": [ + { + "name": "assignee", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "createdBy", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labels", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "mentioned", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "milestone", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "milestoneNumber", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "since", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "states", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "viewerSubscribed", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "IssueOrPullRequest", + "description": "Used for return value of Repository.issueOrPullRequest.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueOrder", + "description": "Ways in which lists of issues can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IssueOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IssueOrderField", + "description": "Properties by which issue connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMENTS", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IssueState", + "description": "The possible states of an issue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IssueStateReason", + "description": "The possible state reasons of an issue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "REOPENED", "isDeprecated": False, "deprecationReason": None}, + {"name": "NOT_PLANNED", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueTemplate", + "description": "A repository issue template.", + "fields": [ + { + "name": "about", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assignees", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "filename", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labels", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueTimelineConnection", + "description": "The connection type for IssueTimelineItem.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueTimelineItemEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "IssueTimelineItem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "IssueTimelineItem", + "description": "An item in an issue timeline", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Commit", "ofType": None}, + {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "TransferredEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "IssueTimelineItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "IssueTimelineItem", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "IssueTimelineItems", + "description": "An item in an issue timeline", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "AddedToProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "CommentDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConnectedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertedNoteToIssueEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertedToDiscussionEvent", "ofType": None}, + {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DisconnectedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MarkedAsDuplicateEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MentionedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MovedColumnsInProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "PinnedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RemovedFromProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "TransferredEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnmarkedAsDuplicateEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnpinnedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "IssueTimelineItemsConnection", + "description": "The connection type for IssueTimelineItems.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueTimelineItemsEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "filteredCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "IssueTimelineItems", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "IssueTimelineItemsEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "IssueTimelineItems", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "IssueTimelineItemsItemType", + "description": "The possible item types found in a timeline.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ISSUE_COMMENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CROSS_REFERENCED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADDED_TO_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ASSIGNED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMENT_DELETED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONNECTED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONVERTED_NOTE_TO_ISSUE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONVERTED_TO_DISCUSSION_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "DEMILESTONED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISCONNECTED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "LABELED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "LOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MARKED_AS_DUPLICATE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MENTIONED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MILESTONED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MOVED_COLUMNS_IN_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "PINNED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REFERENCED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REMOVED_FROM_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "RENAMED_TITLE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REOPENED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIBED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "TRANSFERRED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNASSIGNED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNLABELED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNLOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "USER_BLOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNMARKED_AS_DUPLICATE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNPINNED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNSUBSCRIBED_EVENT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "JoinedGitHubContribution", + "description": "Represents a user signing up for a GitHub account.", + "fields": [ + { + "name": "isRestricted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "occurredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Label", + "description": "A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.", + "fields": [ + { + "name": "color", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDefault", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issues", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the issues by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "filterBy", + "description": "Filtering options for issues returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueFilters", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequests", + "args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LabelConnection", + "description": "The connection type for Label.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "LabelEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Label", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LabelEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Label", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "LabelOrder", + "description": "Ways in which lists of labels can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "LabelOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "LabelOrderField", + "description": "Properties by which label connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Labelable", + "description": "An object that can have labels assigned to it.", + "fields": [ + { + "name": "labels", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "LabeledEvent", + "description": "Represents a 'labeled' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "label", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Label", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labelable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Language", + "description": "Represents a given language found in repositories.", + "fields": [ + { + "name": "color", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LanguageConnection", + "description": "A list of languages associated with the parent.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "LanguageEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Language", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalSize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LanguageEdge", + "description": "Represents the language of a repository.", + "fields": [ + { + "name": "cursor", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Language", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "size", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "LanguageOrder", + "description": "Ordering options for language connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "LanguageOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "LanguageOrderField", + "description": "Properties by which language connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "SIZE", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "License", + "description": "A repository's open source license", + "fields": [ + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "conditions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "LicenseRule", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "featured", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hidden", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "implementation", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "key", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "limitations", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "LicenseRule", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nickname", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permissions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "LicenseRule", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pseudoLicense", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "spdxId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LicenseRule", + "description": "Describes a License's conditions, permissions, and limitations", + "fields": [ + { + "name": "description", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "key", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "label", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "LinkProjectV2ToRepositoryInput", + "description": "Autogenerated input type of LinkProjectV2ToRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LinkProjectV2ToRepositoryPayload", + "description": "Autogenerated return type of LinkProjectV2ToRepository", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "LinkProjectV2ToTeamInput", + "description": "Autogenerated input type of LinkProjectV2ToTeam", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "teamId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LinkProjectV2ToTeamPayload", + "description": "Autogenerated return type of LinkProjectV2ToTeam", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "LinkRepositoryToProjectInput", + "description": "Autogenerated input type of LinkRepositoryToProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LinkRepositoryToProjectPayload", + "description": "Autogenerated return type of LinkRepositoryToProject", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LinkedBranch", + "description": "A branch linked to an issue.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LinkedBranchConnection", + "description": "A list of branches linked to an issue.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "LinkedBranchEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "LinkedBranch", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LinkedBranchEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "LinkedBranch", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "LockLockableInput", + "description": "Autogenerated input type of LockLockable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "lockableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "lockReason", + "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "LockLockablePayload", + "description": "Autogenerated return type of LockLockable", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockedRecord", + "args": [], + "type": {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "LockReason", + "description": "The possible reasons that an issue or pull request was locked.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OFF_TOPIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "TOO_HEATED", "isDeprecated": False, "deprecationReason": None}, + {"name": "RESOLVED", "isDeprecated": False, "deprecationReason": None}, + {"name": "SPAM", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Lockable", + "description": "An object that can be locked.", + "fields": [ + { + "name": "activeLockReason", + "args": [], + "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "locked", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "LockedEvent", + "description": "Represents a 'locked' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockReason", + "args": [], + "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Mannequin", + "description": "A placeholder user for attribution of imported data on GitHub.", + "fields": [ + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "claimant", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MannequinConnection", + "description": "A list of mannequins.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MannequinEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MannequinEdge", + "description": "Represents a mannequin.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MannequinOrder", + "description": "Ordering options for mannequins.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MannequinOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MannequinOrderField", + "description": "Properties by which mannequins can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkDiscussionCommentAsAnswerInput", + "description": "Autogenerated input type of MarkDiscussionCommentAsAnswer", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarkDiscussionCommentAsAnswerPayload", + "description": "Autogenerated return type of MarkDiscussionCommentAsAnswer", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkFileAsViewedInput", + "description": "Autogenerated input type of MarkFileAsViewed", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarkFileAsViewedPayload", + "description": "Autogenerated return type of MarkFileAsViewed", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkNotificationAsDoneInput", + "description": "Autogenerated input type of MarkNotificationAsDone", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarkNotificationAsDonePayload", + "description": "Autogenerated return type of MarkNotificationAsDone", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "success", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkProjectV2AsTemplateInput", + "description": "Autogenerated input type of MarkProjectV2AsTemplate", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarkProjectV2AsTemplatePayload", + "description": "Autogenerated return type of MarkProjectV2AsTemplate", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MarkPullRequestReadyForReviewInput", + "description": "Autogenerated input type of MarkPullRequestReadyForReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarkPullRequestReadyForReviewPayload", + "description": "Autogenerated return type of MarkPullRequestReadyForReview", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarkedAsDuplicateEvent", + "description": "Represents a 'marked_as_duplicate' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "canonical", + "args": [], + "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "duplicate", + "args": [], + "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCrossRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarketplaceCategory", + "description": "A public description of a Marketplace category.", + "fields": [ + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "howItWorks", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "primaryListingCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "secondaryListingCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "slug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarketplaceListing", + "description": "A listing in the GitHub integration marketplace.", + "fields": [ + { + "name": "app", + "args": [], + "type": {"kind": "OBJECT", "name": "App", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "companyUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "configurationResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "configurationUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "documentationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "extendedDescription", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "extendedDescriptionHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDescription", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDescriptionHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasPublishedFreeTrialPlans", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasTermsOfService", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasVerifiedOwner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "howItWorks", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "howItWorksHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "installationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "installedForViewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isArchived", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDraft", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPaid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPublic", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isRejected", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isUnverified", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isUnverifiedPending", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isVerificationPendingFromDraft", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isVerificationPendingFromUnverified", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isVerified", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "logoBackgroundColor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "logoUrl", + "args": [ + { + "name": "size", + "description": "The size in pixels of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "400", + } + ], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "normalizedShortDescription", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pricingUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "primaryCategory", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "privacyPolicyUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "screenshotUrls", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "secondaryCategory", + "args": [], + "type": {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "shortDescription", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "slug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "statusUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "supportEmail", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "supportUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "termsOfServiceUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanAddPlans", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanApprove", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelist", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanEditCategories", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanEditPlans", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanRedraft", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanRequestApproval", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasPurchased", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasPurchasedForAllOrganizations", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerIsListingAdmin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarketplaceListingConnection", + "description": "Look up Marketplace Listings", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MarketplaceListingEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MarketplaceListingEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MemberFeatureRequestNotification", + "description": "Represents a member feature request notification", + "fields": [ + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "MemberStatusable", + "description": "Entities that have members who can set status messages.", + "fields": [ + { + "name": "memberStatuses", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for user statuses returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "UserStatusOrder", "ofType": None}, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserStatusConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposClearAuditEntry", + "description": "Audit log entry for a members_can_delete_repos.clear event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposDisableAuditEntry", + "description": "Audit log entry for a members_can_delete_repos.disable event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MembersCanDeleteReposEnableAuditEntry", + "description": "Audit log entry for a members_can_delete_repos.enable event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MentionedEvent", + "description": "Represents a 'mentioned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MergeBranchInput", + "description": "Autogenerated input type of MergeBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "base", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "head", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "commitMessage", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "authorEmail", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MergeBranchPayload", + "description": "Autogenerated return type of MergeBranch", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MergeCommitMessage", + "description": "The possible default commit messages for merges.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PR_TITLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PR_BODY", "isDeprecated": False, "deprecationReason": None}, + {"name": "BLANK", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MergeCommitTitle", + "description": "The possible default commit titles for merges.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PR_TITLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "MERGE_MESSAGE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MergePullRequestInput", + "description": "Autogenerated input type of MergePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "commitHeadline", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "commitBody", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "expectedHeadOid", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "mergeMethod", + "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, + "defaultValue": "MERGE", + }, + { + "name": "authorEmail", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MergePullRequestPayload", + "description": "Autogenerated return type of MergePullRequest", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MergeQueue", + "description": "The queue of pull request entries to be merged into a protected branch in a repository.", + "fields": [ + { + "name": "configuration", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueueConfiguration", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "entries", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "MergeQueueEntryConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nextEntryEstimatedTimeToMerge", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MergeQueueConfiguration", + "description": "Configuration for a MergeQueue", + "fields": [ + { + "name": "checkResponseTimeout", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "maximumEntriesToBuild", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "maximumEntriesToMerge", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeMethod", + "args": [], + "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergingStrategy", + "args": [], + "type": {"kind": "ENUM", "name": "MergeQueueMergingStrategy", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimumEntriesToMerge", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimumEntriesToMergeWaitTime", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MergeQueueEntry", + "description": "Entries in a MergeQueue", + "fields": [ + { + "name": "baseCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enqueuedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enqueuer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "estimatedTimeToMerge", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "jump", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeQueue", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "position", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "solo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MergeQueueEntryState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MergeQueueEntryConnection", + "description": "The connection type for MergeQueueEntry.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MergeQueueEntryEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MergeQueueEntryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MergeQueueEntryState", + "description": "The possible states for a merge queue entry.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, + {"name": "AWAITING_CHECKS", "isDeprecated": False, "deprecationReason": None}, + {"name": "MERGEABLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNMERGEABLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "LOCKED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MergeQueueMergingStrategy", + "description": "The possible merging strategies for a merge queue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ALLGREEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "HEADGREEN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MergeStateStatus", + "description": "Detailed status information about a pull request merge.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DIRTY", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNKNOWN", "isDeprecated": False, "deprecationReason": None}, + {"name": "BLOCKED", "isDeprecated": False, "deprecationReason": None}, + {"name": "BEHIND", "isDeprecated": False, "deprecationReason": None}, + { + "name": "DRAFT", + "isDeprecated": True, + "deprecationReason": "DRAFT state will be removed from this enum and `isDraft` should be used instead Use PullRequest.isDraft instead. Removal on 2021-01-01 UTC.", + }, + {"name": "UNSTABLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "HAS_HOOKS", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLEAN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MergeableState", + "description": "Whether or not a PullRequest can be merged.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MERGEABLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONFLICTING", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNKNOWN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MergedEvent", + "description": "Represents a 'merged' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeRef", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeRefName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Migration", + "description": "Represents a GitHub Enterprise Importer (GEI) migration.", + "fields": [ + { + "name": "continueOnError", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "failureReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "migrationLogUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "migrationSource", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MigrationSource", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sourceUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MigrationState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "warningsCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [{"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}], + }, + { + "kind": "OBJECT", + "name": "MigrationSource", + "description": "A GitHub Enterprise Importer (GEI) migration source.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "type", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MigrationSourceType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MigrationSourceType", + "description": "Represents the different GitHub Enterprise Importer (GEI) migration sources.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "AZURE_DEVOPS", "isDeprecated": False, "deprecationReason": None}, + {"name": "BITBUCKET_SERVER", "isDeprecated": False, "deprecationReason": None}, + {"name": "GITHUB_ARCHIVE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MigrationState", + "description": "The GitHub Enterprise Importer (GEI) migration state.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NOT_STARTED", "isDeprecated": False, "deprecationReason": None}, + {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUCCEEDED", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILED", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING_VALIDATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILED_VALIDATION", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Milestone", + "description": "Represents a Milestone object on a given repository.", + "fields": [ + { + "name": "closed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dueOn", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issues", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the issues by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "filterBy", + "description": "Filtering options for issues returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueFilters", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "progressPercentage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequests", + "args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MilestoneState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanClose", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReopen", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Closable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MilestoneConnection", + "description": "The connection type for Milestone.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MilestoneEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MilestoneEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "MilestoneItem", + "description": "Types that can be inside a Milestone.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "MilestoneOrder", + "description": "Ordering options for milestone connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MilestoneOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MilestoneOrderField", + "description": "Properties by which milestone connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DUE_DATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "MilestoneState", + "description": "The possible states of a milestone.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MilestonedEvent", + "description": "Represents a 'milestoned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "milestoneTitle", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "MilestoneItem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Minimizable", + "description": "Entities that can be minimized.", + "fields": [ + { + "name": "isMinimized", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizedReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMinimize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "GistComment", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "MinimizeCommentInput", + "description": "Autogenerated input type of MinimizeComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "subjectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "classifier", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ReportedContentClassifiers", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MinimizeCommentPayload", + "description": "Autogenerated return type of MinimizeComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizedComment", + "args": [], + "type": {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MoveProjectCardInput", + "description": "Autogenerated input type of MoveProjectCard", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "columnId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "afterCardId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MoveProjectCardPayload", + "description": "Autogenerated return type of MoveProjectCard", + "fields": [ + { + "name": "cardEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectCardEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "MoveProjectColumnInput", + "description": "Autogenerated input type of MoveProjectColumn", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "columnId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "afterColumnId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MoveProjectColumnPayload", + "description": "Autogenerated return type of MoveProjectColumn", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "columnEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectColumnEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "MovedColumnsInProjectEvent", + "description": "Represents a 'moved_columns_in_project' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "previousProjectColumnName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectCard", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectColumnName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": "The root query for implementing GraphQL mutations.", + "fields": [ + { + "name": "abortQueuedMigrations", + "args": [ + { + "name": "input", + "description": "Parameters for AbortQueuedMigrations", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AbortQueuedMigrationsInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AbortQueuedMigrationsPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "abortRepositoryMigration", + "args": [ + { + "name": "input", + "description": "Parameters for AbortRepositoryMigration", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AbortRepositoryMigrationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AbortRepositoryMigrationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "acceptEnterpriseAdministratorInvitation", + "args": [ + { + "name": "input", + "description": "Parameters for AcceptEnterpriseAdministratorInvitation", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AcceptEnterpriseAdministratorInvitationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "AcceptEnterpriseAdministratorInvitationPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "acceptTopicSuggestion", + "args": [ + { + "name": "input", + "description": "Parameters for AcceptTopicSuggestion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AcceptTopicSuggestionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AcceptTopicSuggestionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addAssigneesToAssignable", + "args": [ + { + "name": "input", + "description": "Parameters for AddAssigneesToAssignable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddAssigneesToAssignableInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddAssigneesToAssignablePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addComment", + "args": [ + { + "name": "input", + "description": "Parameters for AddComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "AddCommentInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addDiscussionComment", + "args": [ + { + "name": "input", + "description": "Parameters for AddDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddDiscussionCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddDiscussionCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addDiscussionPollVote", + "args": [ + { + "name": "input", + "description": "Parameters for AddDiscussionPollVote", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddDiscussionPollVoteInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddDiscussionPollVotePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addEnterpriseOrganizationMember", + "args": [ + { + "name": "input", + "description": "Parameters for AddEnterpriseOrganizationMember", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddEnterpriseOrganizationMemberInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "AddEnterpriseOrganizationMemberPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addEnterpriseSupportEntitlement", + "args": [ + { + "name": "input", + "description": "Parameters for AddEnterpriseSupportEntitlement", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddEnterpriseSupportEntitlementInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "AddEnterpriseSupportEntitlementPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addLabelsToLabelable", + "args": [ + { + "name": "input", + "description": "Parameters for AddLabelsToLabelable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddLabelsToLabelableInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddLabelsToLabelablePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addProjectCard", + "args": [ + { + "name": "input", + "description": "Parameters for AddProjectCard", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectCardInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddProjectCardPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addProjectColumn", + "args": [ + { + "name": "input", + "description": "Parameters for AddProjectColumn", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectColumnInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddProjectColumnPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addProjectV2DraftIssue", + "args": [ + { + "name": "input", + "description": "Parameters for AddProjectV2DraftIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectV2DraftIssueInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddProjectV2DraftIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addProjectV2ItemById", + "args": [ + { + "name": "input", + "description": "Parameters for AddProjectV2ItemById", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectV2ItemByIdInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddProjectV2ItemByIdPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addPullRequestReview", + "args": [ + { + "name": "input", + "description": "Parameters for AddPullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddPullRequestReviewPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addPullRequestReviewComment", + "args": [ + { + "name": "input", + "description": "Parameters for AddPullRequestReviewComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddPullRequestReviewCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addPullRequestReviewThread", + "args": [ + { + "name": "input", + "description": "Parameters for AddPullRequestReviewThread", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewThreadInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddPullRequestReviewThreadPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addPullRequestReviewThreadReply", + "args": [ + { + "name": "input", + "description": "Parameters for AddPullRequestReviewThreadReply", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddPullRequestReviewThreadReplyInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "AddPullRequestReviewThreadReplyPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addReaction", + "args": [ + { + "name": "input", + "description": "Parameters for AddReaction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "AddReactionInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddReactionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addStar", + "args": [ + { + "name": "input", + "description": "Parameters for AddStar", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "AddStarInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddStarPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addUpvote", + "args": [ + { + "name": "input", + "description": "Parameters for AddUpvote", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "AddUpvoteInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddUpvotePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "addVerifiableDomain", + "args": [ + { + "name": "input", + "description": "Parameters for AddVerifiableDomain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddVerifiableDomainInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "AddVerifiableDomainPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "approveVerifiableDomain", + "args": [ + { + "name": "input", + "description": "Parameters for ApproveVerifiableDomain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ApproveVerifiableDomainInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ApproveVerifiableDomainPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "archiveProjectV2Item", + "args": [ + { + "name": "input", + "description": "Parameters for ArchiveProjectV2Item", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ArchiveProjectV2ItemInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ArchiveProjectV2ItemPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "archiveRepository", + "args": [ + { + "name": "input", + "description": "Parameters for ArchiveRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ArchiveRepositoryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ArchiveRepositoryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "cancelEnterpriseAdminInvitation", + "args": [ + { + "name": "input", + "description": "Parameters for CancelEnterpriseAdminInvitation", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelEnterpriseAdminInvitationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "CancelEnterpriseAdminInvitationPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "cancelSponsorship", + "args": [ + { + "name": "input", + "description": "Parameters for CancelSponsorship", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelSponsorshipInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CancelSponsorshipPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "changeUserStatus", + "args": [ + { + "name": "input", + "description": "Parameters for ChangeUserStatus", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeUserStatusInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ChangeUserStatusPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clearLabelsFromLabelable", + "args": [ + { + "name": "input", + "description": "Parameters for ClearLabelsFromLabelable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ClearLabelsFromLabelableInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ClearLabelsFromLabelablePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clearProjectV2ItemFieldValue", + "args": [ + { + "name": "input", + "description": "Parameters for ClearProjectV2ItemFieldValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ClearProjectV2ItemFieldValueInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ClearProjectV2ItemFieldValuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "cloneProject", + "args": [ + { + "name": "input", + "description": "Parameters for CloneProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CloneProjectInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CloneProjectPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "cloneTemplateRepository", + "args": [ + { + "name": "input", + "description": "Parameters for CloneTemplateRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CloneTemplateRepositoryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CloneTemplateRepositoryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closeDiscussion", + "args": [ + { + "name": "input", + "description": "Parameters for CloseDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CloseDiscussionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CloseDiscussionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closeIssue", + "args": [ + { + "name": "input", + "description": "Parameters for CloseIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CloseIssueInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CloseIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closePullRequest", + "args": [ + { + "name": "input", + "description": "Parameters for ClosePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ClosePullRequestInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ClosePullRequestPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "convertProjectCardNoteToIssue", + "args": [ + { + "name": "input", + "description": "Parameters for ConvertProjectCardNoteToIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConvertProjectCardNoteToIssueInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ConvertProjectCardNoteToIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "convertPullRequestToDraft", + "args": [ + { + "name": "input", + "description": "Parameters for ConvertPullRequestToDraft", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConvertPullRequestToDraftInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ConvertPullRequestToDraftPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "copyProjectV2", + "args": [ + { + "name": "input", + "description": "Parameters for CopyProjectV2", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CopyProjectV2Input", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CopyProjectV2Payload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createAttributionInvitation", + "args": [ + { + "name": "input", + "description": "Parameters for CreateAttributionInvitation", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateAttributionInvitationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateAttributionInvitationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createBranchProtectionRule", + "args": [ + { + "name": "input", + "description": "Parameters for CreateBranchProtectionRule", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateBranchProtectionRuleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateBranchProtectionRulePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createCheckRun", + "args": [ + { + "name": "input", + "description": "Parameters for CreateCheckRun", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCheckRunInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateCheckRunPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createCheckSuite", + "args": [ + { + "name": "input", + "description": "Parameters for CreateCheckSuite", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCheckSuiteInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateCheckSuitePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createCommitOnBranch", + "args": [ + { + "name": "input", + "description": "Parameters for CreateCommitOnBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCommitOnBranchInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateCommitOnBranchPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createDeploymentStatus", + "args": [ + { + "name": "input", + "description": "Parameters for CreateDeploymentStatus", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateDeploymentStatusInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateDeploymentStatusPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createDiscussion", + "args": [ + { + "name": "input", + "description": "Parameters for CreateDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateDiscussionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateDiscussionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createEnterpriseOrganization", + "args": [ + { + "name": "input", + "description": "Parameters for CreateEnterpriseOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateEnterpriseOrganizationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateEnterpriseOrganizationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createEnvironment", + "args": [ + { + "name": "input", + "description": "Parameters for CreateEnvironment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateEnvironmentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateEnvironmentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createIpAllowListEntry", + "args": [ + { + "name": "input", + "description": "Parameters for CreateIpAllowListEntry", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateIpAllowListEntryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateIpAllowListEntryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createIssue", + "args": [ + { + "name": "input", + "description": "Parameters for CreateIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CreateIssueInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createLabel", + "args": [ + { + "name": "input", + "description": "Parameters for CreateLabel", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CreateLabelInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateLabelPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createLinkedBranch", + "args": [ + { + "name": "input", + "description": "Parameters for CreateLinkedBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateLinkedBranchInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateLinkedBranchPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createMigrationSource", + "args": [ + { + "name": "input", + "description": "Parameters for CreateMigrationSource", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMigrationSourceInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateMigrationSourcePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createProject", + "args": [ + { + "name": "input", + "description": "Parameters for CreateProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateProjectPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createProjectV2", + "args": [ + { + "name": "input", + "description": "Parameters for CreateProjectV2", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectV2Input", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateProjectV2Payload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createProjectV2Field", + "args": [ + { + "name": "input", + "description": "Parameters for CreateProjectV2Field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectV2FieldInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateProjectV2FieldPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createPullRequest", + "args": [ + { + "name": "input", + "description": "Parameters for CreatePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreatePullRequestInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreatePullRequestPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createRef", + "args": [ + { + "name": "input", + "description": "Parameters for CreateRef", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CreateRefInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateRefPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createRepository", + "args": [ + { + "name": "input", + "description": "Parameters for CreateRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateRepositoryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateRepositoryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createRepositoryRuleset", + "args": [ + { + "name": "input", + "description": "Parameters for CreateRepositoryRuleset", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateRepositoryRulesetInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateRepositoryRulesetPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createSponsorsListing", + "args": [ + { + "name": "input", + "description": "Parameters for CreateSponsorsListing", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorsListingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateSponsorsListingPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createSponsorsTier", + "args": [ + { + "name": "input", + "description": "Parameters for CreateSponsorsTier", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorsTierInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateSponsorsTierPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createSponsorship", + "args": [ + { + "name": "input", + "description": "Parameters for CreateSponsorship", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorshipInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateSponsorshipPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createSponsorships", + "args": [ + { + "name": "input", + "description": "Parameters for CreateSponsorships", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSponsorshipsInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateSponsorshipsPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createTeamDiscussion", + "args": [ + { + "name": "input", + "description": "Parameters for CreateTeamDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateTeamDiscussionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateTeamDiscussionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createTeamDiscussionComment", + "args": [ + { + "name": "input", + "description": "Parameters for CreateTeamDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateTeamDiscussionCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateTeamDiscussionCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createUserList", + "args": [ + { + "name": "input", + "description": "Parameters for CreateUserList", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateUserListInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CreateUserListPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "declineTopicSuggestion", + "args": [ + { + "name": "input", + "description": "Parameters for DeclineTopicSuggestion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeclineTopicSuggestionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeclineTopicSuggestionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteBranchProtectionRule", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteBranchProtectionRule", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteBranchProtectionRuleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteBranchProtectionRulePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteDeployment", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteDeployment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDeploymentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteDeploymentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteDiscussion", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDiscussionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteDiscussionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteDiscussionComment", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDiscussionCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteDiscussionCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteEnvironment", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteEnvironment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteEnvironmentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteEnvironmentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteIpAllowListEntry", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteIpAllowListEntry", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteIpAllowListEntryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteIpAllowListEntryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteIssue", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "DeleteIssueInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteIssueComment", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteIssueComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteIssueCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteIssueCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteLabel", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteLabel", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "DeleteLabelInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteLabelPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteLinkedBranch", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteLinkedBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteLinkedBranchInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteLinkedBranchPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletePackageVersion", + "args": [ + { + "name": "input", + "description": "Parameters for DeletePackageVersion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeletePackageVersionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeletePackageVersionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteProject", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteProjectPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteProjectCard", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectCard", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectCardInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteProjectCardPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteProjectColumn", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectColumn", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectColumnInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteProjectColumnPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteProjectV2", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectV2", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2Input", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteProjectV2Payload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteProjectV2Field", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectV2Field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2FieldInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteProjectV2FieldPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteProjectV2Item", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectV2Item", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2ItemInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteProjectV2ItemPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteProjectV2Workflow", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteProjectV2Workflow", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectV2WorkflowInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteProjectV2WorkflowPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletePullRequestReview", + "args": [ + { + "name": "input", + "description": "Parameters for DeletePullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeletePullRequestReviewInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeletePullRequestReviewPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletePullRequestReviewComment", + "args": [ + { + "name": "input", + "description": "Parameters for DeletePullRequestReviewComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeletePullRequestReviewCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeletePullRequestReviewCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteRef", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteRef", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "DeleteRefInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteRefPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteRepositoryRuleset", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteRepositoryRuleset", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteRepositoryRulesetInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteRepositoryRulesetPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteTeamDiscussion", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteTeamDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamDiscussionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteTeamDiscussionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteTeamDiscussionComment", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteTeamDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteTeamDiscussionCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteTeamDiscussionCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteUserList", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteUserList", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUserListInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteUserListPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteVerifiableDomain", + "args": [ + { + "name": "input", + "description": "Parameters for DeleteVerifiableDomain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVerifiableDomainInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DeleteVerifiableDomainPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dequeuePullRequest", + "args": [ + { + "name": "input", + "description": "Parameters for DequeuePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DequeuePullRequestInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DequeuePullRequestPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "disablePullRequestAutoMerge", + "args": [ + { + "name": "input", + "description": "Parameters for DisablePullRequestAutoMerge", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DisablePullRequestAutoMergeInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DisablePullRequestAutoMergePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismissPullRequestReview", + "args": [ + { + "name": "input", + "description": "Parameters for DismissPullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DismissPullRequestReviewInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DismissPullRequestReviewPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismissRepositoryVulnerabilityAlert", + "args": [ + { + "name": "input", + "description": "Parameters for DismissRepositoryVulnerabilityAlert", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DismissRepositoryVulnerabilityAlertInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "DismissRepositoryVulnerabilityAlertPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enablePullRequestAutoMerge", + "args": [ + { + "name": "input", + "description": "Parameters for EnablePullRequestAutoMerge", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnablePullRequestAutoMergeInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "EnablePullRequestAutoMergePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enqueuePullRequest", + "args": [ + { + "name": "input", + "description": "Parameters for EnqueuePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnqueuePullRequestInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "EnqueuePullRequestPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "followOrganization", + "args": [ + { + "name": "input", + "description": "Parameters for FollowOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FollowOrganizationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "FollowOrganizationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "followUser", + "args": [ + { + "name": "input", + "description": "Parameters for FollowUser", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "FollowUserInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "FollowUserPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "grantEnterpriseOrganizationsMigratorRole", + "args": [ + { + "name": "input", + "description": "Parameters for GrantEnterpriseOrganizationsMigratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GrantEnterpriseOrganizationsMigratorRoleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "GrantEnterpriseOrganizationsMigratorRolePayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "grantMigratorRole", + "args": [ + { + "name": "input", + "description": "Parameters for GrantMigratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GrantMigratorRoleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "GrantMigratorRolePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "importProject", + "args": [ + { + "name": "input", + "description": "Parameters for ImportProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ImportProjectInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ImportProjectPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "inviteEnterpriseAdmin", + "args": [ + { + "name": "input", + "description": "Parameters for InviteEnterpriseAdmin", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InviteEnterpriseAdminInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "InviteEnterpriseAdminPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "linkProjectV2ToRepository", + "args": [ + { + "name": "input", + "description": "Parameters for LinkProjectV2ToRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LinkProjectV2ToRepositoryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "LinkProjectV2ToRepositoryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "linkProjectV2ToTeam", + "args": [ + { + "name": "input", + "description": "Parameters for LinkProjectV2ToTeam", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LinkProjectV2ToTeamInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "LinkProjectV2ToTeamPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "linkRepositoryToProject", + "args": [ + { + "name": "input", + "description": "Parameters for LinkRepositoryToProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LinkRepositoryToProjectInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "LinkRepositoryToProjectPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockLockable", + "args": [ + { + "name": "input", + "description": "Parameters for LockLockable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "LockLockableInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "LockLockablePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "markDiscussionCommentAsAnswer", + "args": [ + { + "name": "input", + "description": "Parameters for MarkDiscussionCommentAsAnswer", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkDiscussionCommentAsAnswerInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MarkDiscussionCommentAsAnswerPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "markFileAsViewed", + "args": [ + { + "name": "input", + "description": "Parameters for MarkFileAsViewed", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkFileAsViewedInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MarkFileAsViewedPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "markNotificationAsDone", + "args": [ + { + "name": "input", + "description": "Parameters for MarkNotificationAsDone", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkNotificationAsDoneInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MarkNotificationAsDonePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "markProjectV2AsTemplate", + "args": [ + { + "name": "input", + "description": "Parameters for MarkProjectV2AsTemplate", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkProjectV2AsTemplateInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MarkProjectV2AsTemplatePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "markPullRequestReadyForReview", + "args": [ + { + "name": "input", + "description": "Parameters for MarkPullRequestReadyForReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarkPullRequestReadyForReviewInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MarkPullRequestReadyForReviewPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeBranch", + "args": [ + { + "name": "input", + "description": "Parameters for MergeBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "MergeBranchInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MergeBranchPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergePullRequest", + "args": [ + { + "name": "input", + "description": "Parameters for MergePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MergePullRequestInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MergePullRequestPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizeComment", + "args": [ + { + "name": "input", + "description": "Parameters for MinimizeComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MinimizeCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MinimizeCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "moveProjectCard", + "args": [ + { + "name": "input", + "description": "Parameters for MoveProjectCard", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoveProjectCardInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MoveProjectCardPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "moveProjectColumn", + "args": [ + { + "name": "input", + "description": "Parameters for MoveProjectColumn", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoveProjectColumnInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MoveProjectColumnPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinIssue", + "args": [ + { + "name": "input", + "description": "Parameters for PinIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "PinIssueInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "PinIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishSponsorsTier", + "args": [ + { + "name": "input", + "description": "Parameters for PublishSponsorsTier", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PublishSponsorsTierInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "PublishSponsorsTierPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "regenerateEnterpriseIdentityProviderRecoveryCodes", + "args": [ + { + "name": "input", + "description": "Parameters for RegenerateEnterpriseIdentityProviderRecoveryCodes", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "regenerateVerifiableDomainToken", + "args": [ + { + "name": "input", + "description": "Parameters for RegenerateVerifiableDomainToken", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RegenerateVerifiableDomainTokenInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "RegenerateVerifiableDomainTokenPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rejectDeployments", + "args": [ + { + "name": "input", + "description": "Parameters for RejectDeployments", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RejectDeploymentsInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RejectDeploymentsPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeAssigneesFromAssignable", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveAssigneesFromAssignable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveAssigneesFromAssignableInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveAssigneesFromAssignablePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeEnterpriseAdmin", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseAdmin", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseAdminInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveEnterpriseAdminPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeEnterpriseIdentityProvider", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseIdentityProvider", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseIdentityProviderInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveEnterpriseIdentityProviderPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeEnterpriseMember", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseMember", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseMemberInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveEnterpriseMemberPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeEnterpriseOrganization", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseOrganizationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveEnterpriseOrganizationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeEnterpriseSupportEntitlement", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveEnterpriseSupportEntitlement", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseSupportEntitlementInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "RemoveEnterpriseSupportEntitlementPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeLabelsFromLabelable", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveLabelsFromLabelable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveLabelsFromLabelableInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveLabelsFromLabelablePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeOutsideCollaborator", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveOutsideCollaborator", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveOutsideCollaboratorInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveOutsideCollaboratorPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeReaction", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveReaction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveReactionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveReactionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeStar", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveStar", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "RemoveStarInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveStarPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removeUpvote", + "args": [ + { + "name": "input", + "description": "Parameters for RemoveUpvote", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "RemoveUpvoteInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RemoveUpvotePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reopenDiscussion", + "args": [ + { + "name": "input", + "description": "Parameters for ReopenDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReopenDiscussionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ReopenDiscussionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reopenIssue", + "args": [ + { + "name": "input", + "description": "Parameters for ReopenIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "ReopenIssueInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ReopenIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reopenPullRequest", + "args": [ + { + "name": "input", + "description": "Parameters for ReopenPullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReopenPullRequestInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ReopenPullRequestPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requestReviews", + "args": [ + { + "name": "input", + "description": "Parameters for RequestReviews", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestReviewsInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RequestReviewsPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rerequestCheckSuite", + "args": [ + { + "name": "input", + "description": "Parameters for RerequestCheckSuite", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RerequestCheckSuiteInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RerequestCheckSuitePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resolveReviewThread", + "args": [ + { + "name": "input", + "description": "Parameters for ResolveReviewThread", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResolveReviewThreadInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ResolveReviewThreadPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "retireSponsorsTier", + "args": [ + { + "name": "input", + "description": "Parameters for RetireSponsorsTier", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RetireSponsorsTierInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RetireSponsorsTierPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "revertPullRequest", + "args": [ + { + "name": "input", + "description": "Parameters for RevertPullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RevertPullRequestInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RevertPullRequestPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "revokeEnterpriseOrganizationsMigratorRole", + "args": [ + { + "name": "input", + "description": "Parameters for RevokeEnterpriseOrganizationsMigratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RevokeEnterpriseOrganizationsMigratorRoleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "RevokeEnterpriseOrganizationsMigratorRolePayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "revokeMigratorRole", + "args": [ + { + "name": "input", + "description": "Parameters for RevokeMigratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RevokeMigratorRoleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RevokeMigratorRolePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "setEnterpriseIdentityProvider", + "args": [ + { + "name": "input", + "description": "Parameters for SetEnterpriseIdentityProvider", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetEnterpriseIdentityProviderInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "SetEnterpriseIdentityProviderPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "setOrganizationInteractionLimit", + "args": [ + { + "name": "input", + "description": "Parameters for SetOrganizationInteractionLimit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetOrganizationInteractionLimitInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "SetOrganizationInteractionLimitPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "setRepositoryInteractionLimit", + "args": [ + { + "name": "input", + "description": "Parameters for SetRepositoryInteractionLimit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetRepositoryInteractionLimitInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "SetRepositoryInteractionLimitPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "setUserInteractionLimit", + "args": [ + { + "name": "input", + "description": "Parameters for SetUserInteractionLimit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetUserInteractionLimitInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "SetUserInteractionLimitPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startOrganizationMigration", + "args": [ + { + "name": "input", + "description": "Parameters for StartOrganizationMigration", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StartOrganizationMigrationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "StartOrganizationMigrationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startRepositoryMigration", + "args": [ + { + "name": "input", + "description": "Parameters for StartRepositoryMigration", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StartRepositoryMigrationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "StartRepositoryMigrationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "submitPullRequestReview", + "args": [ + { + "name": "input", + "description": "Parameters for SubmitPullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SubmitPullRequestReviewInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "SubmitPullRequestReviewPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "transferEnterpriseOrganization", + "args": [ + { + "name": "input", + "description": "Parameters for TransferEnterpriseOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferEnterpriseOrganizationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "TransferEnterpriseOrganizationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "transferIssue", + "args": [ + { + "name": "input", + "description": "Parameters for TransferIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferIssueInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "TransferIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unarchiveProjectV2Item", + "args": [ + { + "name": "input", + "description": "Parameters for UnarchiveProjectV2Item", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnarchiveProjectV2ItemInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnarchiveProjectV2ItemPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unarchiveRepository", + "args": [ + { + "name": "input", + "description": "Parameters for UnarchiveRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnarchiveRepositoryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnarchiveRepositoryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unfollowOrganization", + "args": [ + { + "name": "input", + "description": "Parameters for UnfollowOrganization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnfollowOrganizationInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnfollowOrganizationPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unfollowUser", + "args": [ + { + "name": "input", + "description": "Parameters for UnfollowUser", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "UnfollowUserInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnfollowUserPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unlinkProjectV2FromRepository", + "args": [ + { + "name": "input", + "description": "Parameters for UnlinkProjectV2FromRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnlinkProjectV2FromRepositoryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnlinkProjectV2FromRepositoryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unlinkProjectV2FromTeam", + "args": [ + { + "name": "input", + "description": "Parameters for UnlinkProjectV2FromTeam", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnlinkProjectV2FromTeamInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnlinkProjectV2FromTeamPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unlinkRepositoryFromProject", + "args": [ + { + "name": "input", + "description": "Parameters for UnlinkRepositoryFromProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnlinkRepositoryFromProjectInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnlinkRepositoryFromProjectPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unlockLockable", + "args": [ + { + "name": "input", + "description": "Parameters for UnlockLockable", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnlockLockableInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnlockLockablePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unmarkDiscussionCommentAsAnswer", + "args": [ + { + "name": "input", + "description": "Parameters for UnmarkDiscussionCommentAsAnswer", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnmarkDiscussionCommentAsAnswerInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UnmarkDiscussionCommentAsAnswerPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unmarkFileAsViewed", + "args": [ + { + "name": "input", + "description": "Parameters for UnmarkFileAsViewed", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnmarkFileAsViewedInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnmarkFileAsViewedPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unmarkIssueAsDuplicate", + "args": [ + { + "name": "input", + "description": "Parameters for UnmarkIssueAsDuplicate", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnmarkIssueAsDuplicateInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnmarkIssueAsDuplicatePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unmarkProjectV2AsTemplate", + "args": [ + { + "name": "input", + "description": "Parameters for UnmarkProjectV2AsTemplate", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnmarkProjectV2AsTemplateInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnmarkProjectV2AsTemplatePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unminimizeComment", + "args": [ + { + "name": "input", + "description": "Parameters for UnminimizeComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnminimizeCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnminimizeCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unpinIssue", + "args": [ + { + "name": "input", + "description": "Parameters for UnpinIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "UnpinIssueInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnpinIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unresolveReviewThread", + "args": [ + { + "name": "input", + "description": "Parameters for UnresolveReviewThread", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnresolveReviewThreadInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnresolveReviewThreadPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unsubscribeFromNotifications", + "args": [ + { + "name": "input", + "description": "Parameters for UnsubscribeFromNotifications", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnsubscribeFromNotificationsInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UnsubscribeFromNotificationsPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateBranchProtectionRule", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateBranchProtectionRule", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateBranchProtectionRuleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateBranchProtectionRulePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateCheckRun", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateCheckRun", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateCheckRunInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateCheckRunPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateCheckSuitePreferences", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateCheckSuitePreferences", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateCheckSuitePreferencesInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateCheckSuitePreferencesPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateDiscussion", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDiscussionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateDiscussionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateDiscussionComment", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDiscussionCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateDiscussionCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseAdministratorRole", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseAdministratorRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseAdministratorRoleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseAdministratorRolePayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseAllowPrivateRepositoryForkingSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseAllowPrivateRepositoryForkingSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseDefaultRepositoryPermissionSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseDefaultRepositoryPermissionSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseMembersCanCreateRepositoriesSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanCreateRepositoriesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseMembersCanDeleteIssuesSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanDeleteIssuesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseMembersCanDeleteRepositoriesSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanDeleteRepositoriesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseMembersCanInviteCollaboratorsSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanInviteCollaboratorsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseMembersCanMakePurchasesSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanMakePurchasesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanMakePurchasesSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanMakePurchasesSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseMembersCanViewDependencyInsightsSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseMembersCanViewDependencyInsightsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseOrganizationProjectsSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseOrganizationProjectsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseOrganizationProjectsSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseOrganizationProjectsSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseOwnerOrganizationRole", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseOwnerOrganizationRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseOwnerOrganizationRoleInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseOwnerOrganizationRolePayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseProfile", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseProfile", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseProfileInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateEnterpriseProfilePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseRepositoryProjectsSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseRepositoryProjectsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseRepositoryProjectsSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseRepositoryProjectsSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseTeamDiscussionsSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseTeamDiscussionsSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseTeamDiscussionsSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseTeamDiscussionsSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateEnvironment", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateEnvironment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateEnvironmentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateEnvironmentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateIpAllowListEnabledSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateIpAllowListEnabledSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListEnabledSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateIpAllowListEnabledSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateIpAllowListEntry", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateIpAllowListEntry", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListEntryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateIpAllowListEntryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateIpAllowListForInstalledAppsEnabledSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateIpAllowListForInstalledAppsEnabledSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListForInstalledAppsEnabledSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateIpAllowListForInstalledAppsEnabledSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateIssue", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateIssueInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateIssueComment", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateIssueComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIssueCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateIssueCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateLabel", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateLabel", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateLabelInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateLabelPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateNotificationRestrictionSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateNotificationRestrictionSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateNotificationRestrictionSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateNotificationRestrictionSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateOrganizationAllowPrivateRepositoryForkingSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateOrganizationAllowPrivateRepositoryForkingSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateOrganizationWebCommitSignoffSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateOrganizationWebCommitSignoffSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateOrganizationWebCommitSignoffSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateOrganizationWebCommitSignoffSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatePatreonSponsorability", + "args": [ + { + "name": "input", + "description": "Parameters for UpdatePatreonSponsorability", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePatreonSponsorabilityInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdatePatreonSponsorabilityPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateProject", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateProject", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateProjectPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateProjectCard", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectCard", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectCardInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateProjectCardPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateProjectColumn", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectColumn", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectColumnInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateProjectColumnPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateProjectV2", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2Input", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateProjectV2Payload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateProjectV2Collaborators", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2Collaborators", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2CollaboratorsInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateProjectV2CollaboratorsPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateProjectV2DraftIssue", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2DraftIssue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2DraftIssueInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateProjectV2DraftIssuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateProjectV2ItemFieldValue", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2ItemFieldValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2ItemFieldValueInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateProjectV2ItemFieldValuePayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateProjectV2ItemPosition", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateProjectV2ItemPosition", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2ItemPositionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateProjectV2ItemPositionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatePullRequest", + "args": [ + { + "name": "input", + "description": "Parameters for UpdatePullRequest", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdatePullRequestPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatePullRequestBranch", + "args": [ + { + "name": "input", + "description": "Parameters for UpdatePullRequestBranch", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestBranchInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdatePullRequestBranchPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatePullRequestReview", + "args": [ + { + "name": "input", + "description": "Parameters for UpdatePullRequestReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestReviewInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdatePullRequestReviewPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatePullRequestReviewComment", + "args": [ + { + "name": "input", + "description": "Parameters for UpdatePullRequestReviewComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestReviewCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdatePullRequestReviewCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateRef", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateRef", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateRefInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateRefPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateRefs", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateRefs", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateRefsInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateRefsPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateRepository", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateRepositoryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateRepositoryRuleset", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateRepositoryRuleset", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryRulesetInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateRepositoryRulesetPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateRepositoryWebCommitSignoffSetting", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateRepositoryWebCommitSignoffSetting", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryWebCommitSignoffSettingInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "OBJECT", + "name": "UpdateRepositoryWebCommitSignoffSettingPayload", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateSponsorshipPreferences", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateSponsorshipPreferences", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSponsorshipPreferencesInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateSponsorshipPreferencesPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateSubscription", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateSubscription", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSubscriptionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateSubscriptionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateTeamDiscussion", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateTeamDiscussion", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamDiscussionInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateTeamDiscussionPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateTeamDiscussionComment", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateTeamDiscussionComment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamDiscussionCommentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateTeamDiscussionCommentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateTeamReviewAssignment", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateTeamReviewAssignment", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamReviewAssignmentInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateTeamReviewAssignmentPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateTeamsRepository", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateTeamsRepository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamsRepositoryInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateTeamsRepositoryPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateTopics", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateTopics", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateTopicsInput", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateTopicsPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateUserList", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateUserList", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUserListInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateUserListPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updateUserListsForItem", + "args": [ + { + "name": "input", + "description": "Parameters for UpdateUserListsForItem", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUserListsForItemInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "UpdateUserListsForItemPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "verifyVerifiableDomain", + "args": [ + { + "name": "input", + "description": "Parameters for VerifyVerifiableDomain", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VerifyVerifiableDomainInput", + "ofType": None, + }, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "VerifyVerifiableDomainPayload", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Node", + "description": "An object with an ID.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "AddedToMergeQueueEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AddedToProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "App", "ofType": None}, + {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutoMergeDisabledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutoMergeEnabledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutoRebaseEnabledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutoSquashEnabledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutomaticBaseChangeFailedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutomaticBaseChangeSucceededEvent", "ofType": None}, + {"kind": "OBJECT", "name": "BaseRefChangedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "BaseRefDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "BaseRefForcePushedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Blob", "ofType": None}, + {"kind": "OBJECT", "name": "Bot", "ofType": None}, + {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + {"kind": "OBJECT", "name": "BypassForcePushAllowance", "ofType": None}, + {"kind": "OBJECT", "name": "BypassPullRequestAllowance", "ofType": None}, + {"kind": "OBJECT", "name": "CWE", "ofType": None}, + {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, + {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, + {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "CodeOfConduct", "ofType": None}, + {"kind": "OBJECT", "name": "CommentDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Commit", "ofType": None}, + {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + {"kind": "OBJECT", "name": "CommitCommentThread", "ofType": None}, + {"kind": "OBJECT", "name": "Comparison", "ofType": None}, + {"kind": "OBJECT", "name": "ConnectedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertToDraftEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertedNoteToIssueEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertedToDiscussionEvent", "ofType": None}, + {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DependencyGraphManifest", "ofType": None}, + {"kind": "OBJECT", "name": "DeployKey", "ofType": None}, + {"kind": "OBJECT", "name": "DeployedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + {"kind": "OBJECT", "name": "DeploymentEnvironmentChangedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DeploymentReview", "ofType": None}, + {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, + {"kind": "OBJECT", "name": "DisconnectedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionPoll", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionPollOption", "ofType": None}, + {"kind": "OBJECT", "name": "DraftIssue", "ofType": None}, + {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseRepositoryInfo", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseServerUserAccount", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseServerUserAccountEmail", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseServerUserAccountsUpload", "ofType": None}, + {"kind": "OBJECT", "name": "EnterpriseUserAccount", "ofType": None}, + {"kind": "OBJECT", "name": "Environment", "ofType": None}, + {"kind": "OBJECT", "name": "ExternalIdentity", "ofType": None}, + {"kind": "OBJECT", "name": "Gist", "ofType": None}, + {"kind": "OBJECT", "name": "GistComment", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefForcePushedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefRestoredEvent", "ofType": None}, + {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "Label", "ofType": None}, + {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Language", "ofType": None}, + {"kind": "OBJECT", "name": "License", "ofType": None}, + {"kind": "OBJECT", "name": "LinkedBranch", "ofType": None}, + {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + {"kind": "OBJECT", "name": "MarkedAsDuplicateEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, + {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, + {"kind": "OBJECT", "name": "MemberFeatureRequestNotification", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MentionedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, + {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MergedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MigrationSource", "ofType": None}, + {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MovedColumnsInProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "OIDCProvider", "ofType": None}, + {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgAddBillingManagerAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgBlockUserAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableOauthAppRestrictionsAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableSamlAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableTwoFactorRequirementAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableOauthAppRestrictionsAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableSamlAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableTwoFactorRequirementAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveBillingManagerAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveOutsideCollaboratorAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRestoreMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUnblockUserAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUpdateMemberAuditEntry", "ofType": None}, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "ofType": None, + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "ofType": None, + }, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "OrganizationIdentityProvider", "ofType": None}, + {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + {"kind": "OBJECT", "name": "OrganizationMigration", "ofType": None}, + {"kind": "OBJECT", "name": "Package", "ofType": None}, + {"kind": "OBJECT", "name": "PackageFile", "ofType": None}, + {"kind": "OBJECT", "name": "PackageTag", "ofType": None}, + {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, + {"kind": "OBJECT", "name": "PinnedDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "PinnedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "PinnedIssue", "ofType": None}, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "Project", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldDateValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldIterationValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldNumberValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldSingleSelectValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldTextValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2IterationField", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2SingleSelectField", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2View", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2Workflow", "ofType": None}, + {"kind": "OBJECT", "name": "PublicKey", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestCommitCommentThread", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestThread", "ofType": None}, + {"kind": "OBJECT", "name": "Push", "ofType": None}, + {"kind": "OBJECT", "name": "PushAllowance", "ofType": None}, + {"kind": "OBJECT", "name": "Reaction", "ofType": None}, + {"kind": "OBJECT", "name": "ReadyForReviewEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Ref", "ofType": None}, + {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Release", "ofType": None}, + {"kind": "OBJECT", "name": "ReleaseAsset", "ofType": None}, + {"kind": "OBJECT", "name": "RemovedFromMergeQueueEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RemovedFromProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryInvitation", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryRule", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryRulesetBypassActor", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryTopic", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewDismissalAllowance", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewDismissedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewRequest", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewRequestRemovedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewRequestedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "SavedReply", "ofType": None}, + {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, + {"kind": "OBJECT", "name": "SponsorsActivity", "ofType": None}, + {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + {"kind": "OBJECT", "name": "SponsorsListingFeaturedItem", "ofType": None}, + {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + {"kind": "OBJECT", "name": "SponsorshipNewsletter", "ofType": None}, + {"kind": "OBJECT", "name": "Status", "ofType": None}, + {"kind": "OBJECT", "name": "StatusCheckRollup", "ofType": None}, + {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, + {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Tag", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "Topic", "ofType": None}, + {"kind": "OBJECT", "name": "TransferredEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Tree", "ofType": None}, + {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnmarkedAsDuplicateEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnpinnedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UserContentEdit", "ofType": None}, + {"kind": "OBJECT", "name": "UserList", "ofType": None}, + {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, + {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, + {"kind": "OBJECT", "name": "Workflow", "ofType": None}, + {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, + {"kind": "OBJECT", "name": "WorkflowRunFile", "ofType": None}, + ], + }, + { + "kind": "ENUM", + "name": "NotificationRestrictionSettingValue", + "description": "The possible values for the notification restriction setting.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OIDCProvider", + "description": "An OIDC identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", + "fields": [ + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "externalIdentities", + "args": [ + { + "name": "membersOnly", + "description": "Filter to external identities with valid org membership only", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "login", + "description": "Filter to external identities with the users login", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userName", + "description": "Filter to external identities with the users userName/NameID attribute", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ExternalIdentityConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "providerType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OIDCProviderType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tenantId", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OIDCProviderType", + "description": "The OIDC identity provider type", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "AAD", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "OauthApplicationAuditEntryData", + "description": "Metadata for an audit entry with action oauth_application.*", + "fields": [ + { + "name": "oauthApplicationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "OauthApplicationCreateAuditEntry", + "description": "Audit log entry for a oauth_application.create event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "applicationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "callbackUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rateLimit", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": {"kind": "ENUM", "name": "OauthApplicationCreateAuditEntryState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OauthApplicationCreateAuditEntryState", + "description": "The state of an OAuth application when it was created.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ACTIVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUSPENDED", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING_DELETION", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OperationType", + "description": "The corresponding operation type for the action", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ACCESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "AUTHENTICATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "MODIFY", "isDeprecated": False, "deprecationReason": None}, + {"name": "REMOVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "RESTORE", "isDeprecated": False, "deprecationReason": None}, + {"name": "TRANSFER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrderDirection", + "description": "Possible directions in which to order a list of items when provided an `orderBy` argument.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ASC", "isDeprecated": False, "deprecationReason": None}, + {"name": "DESC", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgAddBillingManagerAuditEntry", + "description": "Audit log entry for a org.add_billing_manager", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitationEmail", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgAddMemberAuditEntry", + "description": "Audit log entry for a org.add_member", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permission", + "args": [], + "type": {"kind": "ENUM", "name": "OrgAddMemberAuditEntryPermission", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgAddMemberAuditEntryPermission", + "description": "The permissions available to members on an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "READ", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgBlockUserAuditEntry", + "description": "Audit log entry for a org.block_user", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockedUser", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockedUserName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockedUserResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockedUserUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", + "description": "Audit log entry for a org.config.disable_collaborators_only event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", + "description": "Audit log entry for a org.config.enable_collaborators_only event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgCreateAuditEntry", + "description": "Audit log entry for a org.create event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "billingPlan", + "args": [], + "type": {"kind": "ENUM", "name": "OrgCreateAuditEntryBillingPlan", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgCreateAuditEntryBillingPlan", + "description": "The billing plans available for organizations.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "FREE", "isDeprecated": False, "deprecationReason": None}, + {"name": "BUSINESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "BUSINESS_PLUS", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNLIMITED", "isDeprecated": False, "deprecationReason": None}, + {"name": "TIERED_PER_SEAT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgDisableOauthAppRestrictionsAuditEntry", + "description": "Audit log entry for a org.disable_oauth_app_restrictions event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgDisableSamlAuditEntry", + "description": "Audit log entry for a org.disable_saml event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "digestMethodUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issuerUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signatureMethodUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "singleSignOnUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgDisableTwoFactorRequirementAuditEntry", + "description": "Audit log entry for a org.disable_two_factor_requirement event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgEnableOauthAppRestrictionsAuditEntry", + "description": "Audit log entry for a org.enable_oauth_app_restrictions event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgEnableSamlAuditEntry", + "description": "Audit log entry for a org.enable_saml event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "digestMethodUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issuerUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signatureMethodUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "singleSignOnUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgEnableTwoFactorRequirementAuditEntry", + "description": "Audit log entry for a org.enable_two_factor_requirement event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "OrgEnterpriseOwnerOrder", + "description": "Ordering options for an organization's enterprise owner connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrgEnterpriseOwnerOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgEnterpriseOwnerOrderField", + "description": "Properties by which enterprise owners can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgInviteMemberAuditEntry", + "description": "Audit log entry for a org.invite_member event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationInvitation", + "args": [], + "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgInviteToBusinessAuditEntry", + "description": "Audit log entry for a org.invite_to_business event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessApprovedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_approved event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessBlockedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_blocked event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessDeniedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_denied event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessRequestedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_requested event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgOauthAppAccessUnblockedAuditEntry", + "description": "Audit log entry for a org.oauth_app_access_unblocked event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oauthApplicationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgRemoveBillingManagerAuditEntry", + "description": "Audit log entry for a org.remove_billing_manager event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reason", + "args": [], + "type": {"kind": "ENUM", "name": "OrgRemoveBillingManagerAuditEntryReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgRemoveBillingManagerAuditEntryReason", + "description": "The reason a billing manager was removed from an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE", + "isDeprecated": False, + "deprecationReason": None, + }, + {"name": "SAML_EXTERNAL_IDENTITY_MISSING", "isDeprecated": False, "deprecationReason": None}, + { + "name": "SAML_SSO_ENFORCEMENT_REQUIRES_EXTERNAL_IDENTITY", + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgRemoveMemberAuditEntry", + "description": "Audit log entry for a org.remove_member event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membershipTypes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrgRemoveMemberAuditEntryMembershipType", + "ofType": None, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reason", + "args": [], + "type": {"kind": "ENUM", "name": "OrgRemoveMemberAuditEntryReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgRemoveMemberAuditEntryMembershipType", + "description": "The type of membership a user has with an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "SUSPENDED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DIRECT_MEMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNAFFILIATED", "isDeprecated": False, "deprecationReason": None}, + {"name": "OUTSIDE_COLLABORATOR", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgRemoveMemberAuditEntryReason", + "description": "The reason a member was removed from an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE", + "isDeprecated": False, + "deprecationReason": None, + }, + {"name": "SAML_EXTERNAL_IDENTITY_MISSING", "isDeprecated": False, "deprecationReason": None}, + { + "name": "SAML_SSO_ENFORCEMENT_REQUIRES_EXTERNAL_IDENTITY", + "isDeprecated": False, + "deprecationReason": None, + }, + {"name": "USER_ACCOUNT_DELETED", "isDeprecated": False, "deprecationReason": None}, + {"name": "TWO_FACTOR_ACCOUNT_RECOVERY", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgRemoveOutsideCollaboratorAuditEntry", + "description": "Audit log entry for a org.remove_outside_collaborator event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membershipTypes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "OrgRemoveOutsideCollaboratorAuditEntryMembershipType", + "ofType": None, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reason", + "args": [], + "type": { + "kind": "ENUM", + "name": "OrgRemoveOutsideCollaboratorAuditEntryReason", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgRemoveOutsideCollaboratorAuditEntryMembershipType", + "description": "The type of membership a user has with an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OUTSIDE_COLLABORATOR", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNAFFILIATED", "isDeprecated": False, "deprecationReason": None}, + {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgRemoveOutsideCollaboratorAuditEntryReason", + "description": "The reason an outside collaborator was removed from an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE", + "isDeprecated": False, + "deprecationReason": None, + }, + {"name": "SAML_EXTERNAL_IDENTITY_MISSING", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberAuditEntry", + "description": "Audit log entry for a org.restore_member event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restoredCustomEmailRoutingsCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restoredIssueAssignmentsCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restoredMemberships", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "UNION", + "name": "OrgRestoreMemberAuditEntryMembership", + "ofType": None, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restoredMembershipsCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restoredRepositoriesCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restoredRepositoryStarsCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "restoredRepositoryWatchesCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "OrgRestoreMemberAuditEntryMembership", + "description": "Types of memberships that can be restored for an Organization member.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", + "ofType": None, + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", + "ofType": None, + }, + {"kind": "OBJECT", "name": "OrgRestoreMemberMembershipTeamAuditEntryData", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", + "description": "Metadata for an organization membership for org.restore_member actions", + "fields": [ + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", + "description": "Metadata for a repository membership for org.restore_member actions", + "fields": [ + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipTeamAuditEntryData", + "description": "Metadata for a team membership for org.restore_member actions", + "fields": [ + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgUnblockUserAuditEntry", + "description": "Audit log entry for a org.unblock_user", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockedUser", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockedUserName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockedUserResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockedUserUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", + "description": "Audit log entry for a org.update_default_repository_permission", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permission", + "args": [], + "type": { + "kind": "ENUM", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permissionWas", + "args": [], + "type": { + "kind": "ENUM", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", + "description": "The default permission a repository can have in an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "READ", "isDeprecated": False, "deprecationReason": None}, + {"name": "WRITE", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberAuditEntry", + "description": "Audit log entry for a org.update_member event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permission", + "args": [], + "type": {"kind": "ENUM", "name": "OrgUpdateMemberAuditEntryPermission", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permissionWas", + "args": [], + "type": {"kind": "ENUM", "name": "OrgUpdateMemberAuditEntryPermission", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgUpdateMemberAuditEntryPermission", + "description": "The permissions available to members on an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "READ", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "description": "Audit log entry for a org.update_member_repository_creation_permission event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "canCreateRepositories", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": { + "kind": "ENUM", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility", + "description": "The permissions available for repository creation on an Organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC_INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE_INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC_PRIVATE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "description": "Audit log entry for a org.update_member_repository_invitation_permission event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "canInviteOutsideCollaboratorsToRepositories", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Organization", + "description": "An account on GitHub, with one or more owners, that has repositories, members and teams.", + "fields": [ + { + "name": "announcement", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "announcementExpiresAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "announcementUserDismissible", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "anyPinnableItems", + "args": [ + { + "name": "type", + "description": "Filter to only a particular kind of pinnable item.", + "type": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "archivedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "auditLog", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "The query string to filter audit entries", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the returned audit log entries.", + "type": {"kind": "INPUT_OBJECT", "name": "AuditLogOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationAuditEntryConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "descriptionHTML", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "domains", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isVerified", + "description": "Filter by if the domain is verified.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "isApproved", + "description": "Filter by if the domain is approved.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "orderBy", + "description": "Ordering options for verifiable domains returned.", + "type": {"kind": "INPUT_OBJECT", "name": "VerifiableDomainOrder", "ofType": None}, + "defaultValue": "{field: DOMAIN, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "VerifiableDomainConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseOwners", + "args": [ + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationRole", + "description": "The organization role to filter by.", + "type": {"kind": "ENUM", "name": "RoleInOrganization", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for enterprise owners returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "OrgEnterpriseOwnerOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationEnterpriseOwnerConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "estimatedNextSponsorsPayoutInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasSponsorsListing", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "interactionAbility", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryInteractionAbility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListEnabledSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IpAllowListEnabledSettingValue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListEntries", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for IP allow list entries returned.", + "type": {"kind": "INPUT_OBJECT", "name": "IpAllowListEntryOrder", "ofType": None}, + "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IpAllowListEntryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListForInstalledAppsEnabledSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListForInstalledAppsEnabledSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSponsoredBy", + "args": [ + { + "name": "accountLogin", + "description": "The target account's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSponsoringViewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isVerified", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "itemShowcase", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProfileItemShowcase", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lifetimeReceivedSponsorshipValues", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for results returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorAndLifetimeValueOrder", + "ofType": None, + }, + "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "location", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mannequins", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "login", + "description": "Filter mannequins by login.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for mannequins returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "MannequinOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MannequinConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "memberStatuses", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for user statuses returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "UserStatusOrder", "ofType": None}, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserStatusConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersCanForkPrivateRepositories", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersWithRole", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationMemberConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "monthlyEstimatedSponsorsIncomeInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "newTeamResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "newTeamUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "notificationDeliveryRestrictionEnabledSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "NotificationRestrictionSettingValue", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationBillingEmail", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "packages", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "names", + "description": "Find packages by their names.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "description": "Find packages in a repository by ID.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "packageType", + "description": "Filter registry package by type.", + "type": {"kind": "ENUM", "name": "PackageType", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": {"kind": "INPUT_OBJECT", "name": "PackageOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pendingMembers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnableItems", + "args": [ + { + "name": "types", + "description": "Filter the types of pinnable items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedItems", + "args": [ + { + "name": "types", + "description": "Filter the types of pinned items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedItemsRemaining", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [ + { + "name": "number", + "description": "The project number to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projects", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for projects returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "search", + "description": "Query to search projects by, currently only searching by name.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the projects by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsV2", + "args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, + "defaultValue": "{field: NUMBER, direction: DESC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "recentProjects", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositories", + "args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": "[OWNER, COLLABORATOR]", + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isArchived", + "description": "If non-null, filters repositories according to whether they are archived and not maintained", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isFork", + "description": "If non-null, filters repositories according to whether they are forks of another repository", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [ + { + "name": "name", + "description": "Name of Repository to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "followRenames", + "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryDiscussionComments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "description": "Filter discussion comments to only those in a specific repository.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "onlyAnswers", + "description": "Filter discussion comments to only those that were marked as the answer", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryDiscussions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for discussions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "DiscussionOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + { + "name": "repositoryId", + "description": "Filter discussions to only those in a specific repository.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "answered", + "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "states", + "description": "A list of states to filter the discussions by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DiscussionState", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryMigrations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "state", + "description": "Filter repository migrations by state.", + "type": {"kind": "ENUM", "name": "MigrationState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryName", + "description": "Filter repository migrations by repository name.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repository migrations returned.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryMigrationOrder", + "ofType": None, + }, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryMigrationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresTwoFactorAuthentication", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ruleset", + "args": [ + { + "name": "databaseId", + "description": "The ID of the ruleset to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rulesets", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "includeParents", + "description": "Return rulesets configured at higher levels that apply to this organization", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": {"kind": "OBJECT", "name": "RepositoryRulesetConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "samlIdentityProvider", + "args": [], + "type": {"kind": "OBJECT", "name": "OrganizationIdentityProvider", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsoring", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the users and organizations returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, + "defaultValue": "{field: RELEVANCE, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsors", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "tierId", + "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsors returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, + "defaultValue": "{field: RELEVANCE, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsActivities", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "period", + "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", + "type": {"kind": "ENUM", "name": "SponsorsActivityPeriod", "ofType": None}, + "defaultValue": "MONTH", + }, + { + "name": "since", + "description": "Filter activities to those that occurred on or after this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "until", + "description": "Filter activities to those that occurred before this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for activity returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorsActivityOrder", "ofType": None}, + "defaultValue": "{field: TIMESTAMP, direction: DESC}", + }, + { + "name": "actions", + "description": "Filter activities to only the specified actions.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "ofType": None, + }, + }, + }, + "defaultValue": "[]", + }, + { + "name": "includeAsSponsor", + "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "includePrivate", + "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsActivityConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsListing", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipForViewerAsSponsor", + "args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + } + ], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipForViewerAsSponsorable", + "args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + } + ], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipNewsletters", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorship updates returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipNewsletterOrder", + "ofType": None, + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletterConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipsAsMaintainer", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "includePrivate", + "description": "Whether or not to include private sponsorships in the result set", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipsAsSponsor", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "maintainerLogins", + "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [ + { + "name": "slug", + "description": "The name or slug of the team to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teams", + "args": [ + { + "name": "privacy", + "description": "If non-null, filters teams according to privacy", + "type": {"kind": "ENUM", "name": "TeamPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "notificationSetting", + "description": "If non-null, filters teams according to notification setting", + "type": {"kind": "ENUM", "name": "TeamNotificationSetting", "ofType": None}, + "defaultValue": None, + }, + { + "name": "role", + "description": "If non-null, filters teams according to whether the viewer is an admin or member on team", + "type": {"kind": "ENUM", "name": "TeamRole", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "If non-null, filters teams with query on team name and team slug", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userLogins", + "description": "User logins to filter by", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for teams returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "TeamOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ldapMapped", + "description": "If true, filters teams that are mapped to an LDAP Group (Enterprise only)", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "rootTeamsOnly", + "description": "If true, restrict to only root teams", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalSponsorshipAmountAsSponsorInCents", + "args": [ + { + "name": "since", + "description": "Filter payments to those that occurred on or after this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "until", + "description": "Filter payments to those that occurred before this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogins", + "description": "Filter payments to those made to the users or organizations with the specified usernames.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + ], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "twitterUsername", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanAdminister", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanChangePinnedItems", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanCreateProjects", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanCreateRepositories", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanCreateTeams", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSponsor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerIsAMember", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerIsFollowing", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerIsSponsoring", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "webCommitSignoffRequired", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "websiteUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + {"kind": "INTERFACE", "name": "AnnouncementBanner", "ofType": None}, + {"kind": "INTERFACE", "name": "MemberStatusable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "PackageOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProfileOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2Recent", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryDiscussionAuthor", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryDiscussionCommentAuthor", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "OrganizationAuditEntry", + "description": "An audit entry in an organization audit log.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgAddBillingManagerAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgBlockUserAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableOauthAppRestrictionsAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableSamlAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableTwoFactorRequirementAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableOauthAppRestrictionsAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableSamlAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableTwoFactorRequirementAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveBillingManagerAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveOutsideCollaboratorAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRestoreMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUnblockUserAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUpdateMemberAuditEntry", "ofType": None}, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "ofType": None, + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "ofType": None, + }, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "OrganizationAuditEntryConnection", + "description": "The connection type for OrganizationAuditEntry.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationAuditEntryEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "OrganizationAuditEntry", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "OrganizationAuditEntryData", + "description": "Metadata for an audit entry with action org.*", + "fields": [ + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgAddBillingManagerAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgBlockUserAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableOauthAppRestrictionsAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableSamlAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgDisableTwoFactorRequirementAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableOauthAppRestrictionsAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableSamlAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgEnableTwoFactorRequirementAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveBillingManagerAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRemoveOutsideCollaboratorAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgRestoreMemberAuditEntry", "ofType": None}, + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", + "ofType": None, + }, + {"kind": "OBJECT", "name": "OrgUnblockUserAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "OrgUpdateMemberAuditEntry", "ofType": None}, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", + "ofType": None, + }, + { + "kind": "OBJECT", + "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", + "ofType": None, + }, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "OrganizationAuditEntryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "OrganizationAuditEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationConnection", + "description": "A list of organizations managed by an enterprise.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationEnterpriseOwnerConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationEnterpriseOwnerEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationEnterpriseOwnerEdge", + "description": "An enterprise owner in the context of an organization that is part of the enterprise.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationRole", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RoleInOrganization", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationIdentityProvider", + "description": "An Identity Provider configured to provision SAML and SCIM identities for Organizations. Visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members.", + "fields": [ + { + "name": "digestMethod", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "externalIdentities", + "args": [ + { + "name": "membersOnly", + "description": "Filter to external identities with valid org membership only", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "login", + "description": "Filter to external identities with the users login", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userName", + "description": "Filter to external identities with the users userName/NameID attribute", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ExternalIdentityConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "idpCertificate", + "args": [], + "type": {"kind": "SCALAR", "name": "X509Certificate", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issuer", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signatureMethod", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ssoUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationInvitation", + "description": "An Invitation for a user to an organization.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitationSource", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrganizationInvitationSource", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitationType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrganizationInvitationType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitee", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "inviter", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "`inviter` will be removed. `inviter` will be replaced by `inviterActor`. Removal on 2024-07-01 UTC.", + }, + { + "name": "inviterActor", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "role", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrganizationInvitationRole", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationInvitationConnection", + "description": "The connection type for OrganizationInvitation.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationInvitationEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationInvitationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrganizationInvitationRole", + "description": "The possible organization invitation roles.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DIRECT_MEMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, + {"name": "REINSTATE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrganizationInvitationSource", + "description": "The possible organization invitation sources.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "UNKNOWN", "isDeprecated": False, "deprecationReason": None}, + {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "SCIM", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrganizationInvitationType", + "description": "The possible organization invitation types.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "USER", "isDeprecated": False, "deprecationReason": None}, + {"name": "EMAIL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationMemberConnection", + "description": "A list of users who belong to the organization.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationMemberEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationMemberEdge", + "description": "Represents a user within an organization.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasTwoFactorEnabled", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "role", + "args": [], + "type": {"kind": "ENUM", "name": "OrganizationMemberRole", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrganizationMemberRole", + "description": "The possible roles within an organization for its members.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrganizationMembersCanCreateRepositoriesSettingValue", + "description": "The possible values for the members can create repositories setting on an organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationMigration", + "description": "A GitHub Enterprise Importer (GEI) organization migration.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "failureReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "remainingRepositoriesCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sourceOrgName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sourceOrgUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrganizationMigrationState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "targetOrgName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalRepositoriesCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrganizationMigrationState", + "description": "The Octoshift Organization migration state.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NOT_STARTED", "isDeprecated": False, "deprecationReason": None}, + {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRE_REPO_MIGRATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "REPO_MIGRATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "POST_REPO_MIGRATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUCCEEDED", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILED", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING_VALIDATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILED_VALIDATION", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "OrganizationOrUser", + "description": "Used for argument of CreateProjectV2 mutation.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "OrganizationOrder", + "description": "Ordering options for organization connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrganizationOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "OrganizationOrderField", + "description": "Properties by which organization connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationTeamsHovercardContext", + "description": "An organization teams hovercard context", + "fields": [ + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "octicon", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "relevantTeams", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalTeamCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "OrganizationsHovercardContext", + "description": "An organization list hovercard context", + "fields": [ + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "octicon", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "relevantOrganizations", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for the User's organizations.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalOrganizationCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Package", + "description": "Information for an uploaded package.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "latestVersion", + "args": [], + "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "packageType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PackageType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "statistics", + "args": [], + "type": {"kind": "OBJECT", "name": "PackageStatistics", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "version", + "args": [ + { + "name": "version", + "description": "The package version.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "versions", + "args": [ + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": {"kind": "INPUT_OBJECT", "name": "PackageVersionOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageVersionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageConnection", + "description": "The connection type for Package.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Package", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Package", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageFile", + "description": "A file in a package version.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "md5", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "packageVersion", + "args": [], + "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sha1", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sha256", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "size", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageFileConnection", + "description": "The connection type for PackageFile.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageFileEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageFile", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageFileEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PackageFile", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "PackageFileOrder", + "description": "Ways in which lists of package files can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": {"kind": "ENUM", "name": "PackageFileOrderField", "ofType": None}, + "defaultValue": None, + }, + { + "name": "direction", + "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PackageFileOrderField", + "description": "Properties by which package file connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "PackageOrder", + "description": "Ways in which lists of packages can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": {"kind": "ENUM", "name": "PackageOrderField", "ofType": None}, + "defaultValue": None, + }, + { + "name": "direction", + "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PackageOrderField", + "description": "Properties by which package connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "PackageOwner", + "description": "Represents an owner of a package.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "packages", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "names", + "description": "Find packages by their names.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "description": "Find packages in a repository by ID.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "packageType", + "description": "Filter registry package by type.", + "type": {"kind": "ENUM", "name": "PackageType", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": {"kind": "INPUT_OBJECT", "name": "PackageOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "PackageStatistics", + "description": "Represents a object that contains package activity statistics such as downloads.", + "fields": [ + { + "name": "downloadsTotalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageTag", + "description": "A version tag contains the mapping between a tag name and a version.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "version", + "args": [], + "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PackageType", + "description": "The possible types of a package.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NPM", + "isDeprecated": True, + "deprecationReason": "NPM will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC.", + }, + { + "name": "RUBYGEMS", + "isDeprecated": True, + "deprecationReason": "RUBYGEMS will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-12-28 UTC.", + }, + { + "name": "MAVEN", + "isDeprecated": True, + "deprecationReason": "MAVEN will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2023-02-10 UTC.", + }, + { + "name": "DOCKER", + "isDeprecated": True, + "deprecationReason": "DOCKER will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2021-06-21 UTC.", + }, + {"name": "DEBIAN", "isDeprecated": False, "deprecationReason": None}, + { + "name": "NUGET", + "isDeprecated": True, + "deprecationReason": "NUGET will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC.", + }, + {"name": "PYPI", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageVersion", + "description": "Information about a specific package version.", + "fields": [ + { + "name": "files", + "args": [ + { + "name": "orderBy", + "description": "Ordering of the returned package files.", + "type": {"kind": "INPUT_OBJECT", "name": "PackageFileOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageFileConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "package", + "args": [], + "type": {"kind": "OBJECT", "name": "Package", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "platform", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "preRelease", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "readme", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "release", + "args": [], + "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "statistics", + "args": [], + "type": {"kind": "OBJECT", "name": "PackageVersionStatistics", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "summary", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "version", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageVersionConnection", + "description": "The connection type for PackageVersion.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageVersionEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageVersionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "PackageVersionOrder", + "description": "Ways in which lists of package versions can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": {"kind": "ENUM", "name": "PackageVersionOrderField", "ofType": None}, + "defaultValue": None, + }, + { + "name": "direction", + "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PackageVersionOrderField", + "description": "Properties by which package version connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PackageVersionStatistics", + "description": "Represents a object that contains package version activity statistics such as downloads.", + "fields": [ + { + "name": "downloadsTotalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PageInfo", + "description": "Information about pagination in a connection.", + "fields": [ + { + "name": "endCursor", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasNextPage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasPreviousPage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startCursor", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PatchStatus", + "description": "The possible types of patch statuses.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ADDED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DELETED", "isDeprecated": False, "deprecationReason": None}, + {"name": "RENAMED", "isDeprecated": False, "deprecationReason": None}, + {"name": "COPIED", "isDeprecated": False, "deprecationReason": None}, + {"name": "MODIFIED", "isDeprecated": False, "deprecationReason": None}, + {"name": "CHANGED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "PermissionGranter", + "description": "Types that can grant permissions on a repository to a user", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "PermissionSource", + "description": "A level of permission and source for a user's access to a repository.", + "fields": [ + { + "name": "organization", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permission", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DefaultRepositoryPermissionField", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "roleName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "source", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "PermissionGranter", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "PinIssueInput", + "description": "Autogenerated input type of PinIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "issueId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinIssuePayload", + "description": "Autogenerated return type of PinIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "PinnableItem", + "description": "Types that can be pinned to a profile page.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Gist", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "PinnableItemConnection", + "description": "The connection type for PinnableItem.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnableItemEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "PinnableItem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinnableItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "PinnableItem", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PinnableItemType", + "description": "Represents items that can be pinned to a profile page or dashboard.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, + {"name": "GIST", "isDeprecated": False, "deprecationReason": None}, + {"name": "ISSUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PROJECT", "isDeprecated": False, "deprecationReason": None}, + {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, + {"name": "USER", "isDeprecated": False, "deprecationReason": None}, + {"name": "ORGANIZATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "TEAM", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinnedDiscussion", + "description": "A Pinned Discussion is a discussion pinned to a repository's index page.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "gradientStopColors", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pattern", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PinnedDiscussionPattern", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedBy", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "preconfiguredGradient", + "args": [], + "type": {"kind": "ENUM", "name": "PinnedDiscussionGradient", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinnedDiscussionConnection", + "description": "The connection type for PinnedDiscussion.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnedDiscussionEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnedDiscussion", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinnedDiscussionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PinnedDiscussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PinnedDiscussionGradient", + "description": "Preconfigured gradients that may be used to style discussions pinned within a repository.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "RED_ORANGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "BLUE_MINT", "isDeprecated": False, "deprecationReason": None}, + {"name": "BLUE_PURPLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PINK_BLUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PURPLE_CORAL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PinnedDiscussionPattern", + "description": "Preconfigured background patterns that may be used to style discussions pinned within a repository.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DOT_FILL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PLUS", "isDeprecated": False, "deprecationReason": None}, + {"name": "ZAP", "isDeprecated": False, "deprecationReason": None}, + {"name": "CHEVRON_UP", "isDeprecated": False, "deprecationReason": None}, + {"name": "DOT", "isDeprecated": False, "deprecationReason": None}, + {"name": "HEART_FILL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinnedEvent", + "description": "Represents a 'pinned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinnedIssue", + "description": "A Pinned Issue is a issue pinned to a repository's index page.", + "fields": [ + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDatabaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedBy", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinnedIssueConnection", + "description": "The connection type for PinnedIssue.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnedIssueEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnedIssue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PinnedIssueEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PinnedIssue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "PreciseDateTime", + "description": "An ISO-8601 encoded UTC date string with millisecond precision.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingDisableAuditEntry", + "description": "Audit log entry for a private_repository_forking.disable event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PrivateRepositoryForkingEnableAuditEntry", + "description": "Audit log entry for a private_repository_forking.enable event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProfileItemShowcase", + "description": "A curatable list of repositories relating to a repository owner, which defaults to showing the most popular repositories they own.", + "fields": [ + { + "name": "hasPinnedItems", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "items", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "ProfileOwner", + "description": "Represents any entity on GitHub that has a profile page.", + "fields": [ + { + "name": "anyPinnableItems", + "args": [ + { + "name": "type", + "description": "Filter to only a particular kind of pinnable item.", + "type": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "itemShowcase", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProfileItemShowcase", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "location", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnableItems", + "args": [ + { + "name": "types", + "description": "Filter the types of pinnable items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedItems", + "args": [ + { + "name": "types", + "description": "Filter the types of pinned items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedItemsRemaining", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanChangePinnedItems", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "websiteUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "Project", + "description": "Projects manage issues, pull requests and notes within a project owner.", + "fields": [ + { + "name": "body", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "columns", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectColumnConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pendingCards", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "archivedStates", + "description": "A list of archived states to filter the cards by", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectCardArchivedState", "ofType": None}, + }, + "defaultValue": "[ARCHIVED, NOT_ARCHIVED]", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectCardConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "progress", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectProgress", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanClose", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReopen", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Closable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectCard", + "description": "A card in a project.", + "fields": [ + { + "name": "column", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "content", + "args": [], + "type": {"kind": "UNION", "name": "ProjectCardItem", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isArchived", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "note", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Project", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": {"kind": "ENUM", "name": "ProjectCardState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectCardArchivedState", + "description": "The possible archived states of a project card.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ARCHIVED", "isDeprecated": False, "deprecationReason": None}, + {"name": "NOT_ARCHIVED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectCardConnection", + "description": "The connection type for ProjectCard.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectCardEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectCardEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCardImport", + "description": "An issue or PR and its owning repository to be used in a project card.", + "fields": None, + "inputFields": [ + { + "name": "repository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "number", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "ProjectCardItem", + "description": "Types that can be inside Project Cards.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "ENUM", + "name": "ProjectCardState", + "description": "Various content states of a ProjectCard", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CONTENT_ONLY", "isDeprecated": False, "deprecationReason": None}, + {"name": "NOTE_ONLY", "isDeprecated": False, "deprecationReason": None}, + {"name": "REDACTED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectColumn", + "description": "A column inside a project.", + "fields": [ + { + "name": "cards", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "archivedStates", + "description": "A list of archived states to filter the cards by", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectCardArchivedState", "ofType": None}, + }, + "defaultValue": "[ARCHIVED, NOT_ARCHIVED]", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectCardConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Project", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "purpose", + "args": [], + "type": {"kind": "ENUM", "name": "ProjectColumnPurpose", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectColumnConnection", + "description": "The connection type for ProjectColumn.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectColumnEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectColumnEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectColumnImport", + "description": "A project column and a list of its issues and PRs.", + "fields": None, + "inputFields": [ + { + "name": "columnName", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "position", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "issues", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "ProjectCardImport", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectColumnPurpose", + "description": "The semantic purpose of the column - todo, in progress, or done.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "TODO", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "DONE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectConnection", + "description": "A list of projects associated with the owner.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Project", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectOrder", + "description": "Ways in which lists of projects can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectOrderField", + "description": "Properties by which project connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "ProjectOwner", + "description": "Represents an owner of a Project.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [ + { + "name": "number", + "description": "The project number to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projects", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for projects returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "search", + "description": "Query to search projects by, currently only searching by name.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the projects by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanCreateProjects", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ProjectProgress", + "description": "Project progress stats.", + "fields": [ + { + "name": "doneCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "donePercentage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "inProgressCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "inProgressPercentage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "todoCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "todoPercentage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectState", + "description": "State of the project; either 'open' or 'closed'", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectTemplate", + "description": "GitHub-provided templates for Projects", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "BASIC_KANBAN", "isDeprecated": False, "deprecationReason": None}, + {"name": "AUTOMATED_KANBAN_V2", "isDeprecated": False, "deprecationReason": None}, + {"name": "AUTOMATED_REVIEWS_KANBAN", "isDeprecated": False, "deprecationReason": None}, + {"name": "BUG_TRIAGE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2", + "description": "New projects that manage issues, pull requests and drafts using tables and boards.", + "fields": [ + { + "name": "closed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [ + { + "name": "name", + "description": "The name of the field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fields", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 fields returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "items", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 items returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2ItemOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "public", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "readme", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositories", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "shortDescription", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teams", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for teams returned from this connection.", + "type": {"kind": "INPUT_OBJECT", "name": "TeamOrder", "ofType": None}, + "defaultValue": "{field: NAME, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "template", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "view", + "args": [ + { + "name": "number", + "description": "The number of a view belonging to the project", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2View", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanClose", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReopen", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "views", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 views returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2ViewOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ViewConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "workflow", + "args": [ + { + "name": "number", + "description": "The number of a workflow belonging to the project", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2Workflow", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "workflows", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 workflows returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2WorkflowOrder", "ofType": None}, + "defaultValue": "{field: NAME, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2WorkflowConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Closable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "ProjectV2Actor", + "description": "Possible collaborators for a project.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Team", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ProjectV2ActorConnection", + "description": "The connection type for ProjectV2Actor.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ActorEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2Actor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ActorEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "ProjectV2Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Collaborator", + "description": "A collaborator to update on a project. Only one of the userId or teamId should be provided.", + "fields": None, + "inputFields": [ + { + "name": "userId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "teamId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "role", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2Roles", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2Connection", + "description": "The connection type for ProjectV2.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Edge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2CustomFieldType", + "description": "The type of a project field.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "TEXT", "isDeprecated": False, "deprecationReason": None}, + {"name": "SINGLE_SELECT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "DATE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2Edge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2Field", + "description": "A field inside a project.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dataType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2FieldType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2FieldCommon", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "ProjectV2FieldCommon", + "description": "Common fields across different project field types", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dataType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2FieldType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2IterationField", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2SingleSelectField", "ofType": None}, + ], + }, + { + "kind": "UNION", + "name": "ProjectV2FieldConfiguration", + "description": "Configurations for project fields.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2IterationField", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2SingleSelectField", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationConnection", + "description": "The connection type for ProjectV2FieldConfiguration.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2FieldConfigurationEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2FieldConfigurationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2FieldConnection", + "description": "The connection type for ProjectV2Field.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2FieldEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2FieldEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldOrder", + "description": "Ordering options for project v2 field connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2FieldOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2FieldOrderField", + "description": "Properties by which project v2 field connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "POSITION", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2FieldType", + "description": "The type of a project field.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ASSIGNEES", "isDeprecated": False, "deprecationReason": None}, + {"name": "LINKED_PULL_REQUESTS", "isDeprecated": False, "deprecationReason": None}, + {"name": "REVIEWERS", "isDeprecated": False, "deprecationReason": None}, + {"name": "LABELS", "isDeprecated": False, "deprecationReason": None}, + {"name": "MILESTONE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, + {"name": "TITLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "TEXT", "isDeprecated": False, "deprecationReason": None}, + {"name": "SINGLE_SELECT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "DATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "ITERATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "TRACKS", "isDeprecated": False, "deprecationReason": None}, + {"name": "TRACKED_BY", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2FieldValue", + "description": "The values that can be used to update a field of an item inside a Project. Only 1 value can be updated at a time.", + "fields": None, + "inputFields": [ + { + "name": "text", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "number", + "type": {"kind": "SCALAR", "name": "Float", "ofType": None}, + "defaultValue": None, + }, + { + "name": "date", + "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, + "defaultValue": None, + }, + { + "name": "singleSelectOptionId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "iterationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Filters", + "description": "Ways in which to filter lists of projects.", + "fields": None, + "inputFields": [ + { + "name": "state", + "type": {"kind": "ENUM", "name": "ProjectV2State", "ofType": None}, + "defaultValue": None, + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2Item", + "description": "An item within a Project.", + "fields": [ + { + "name": "content", + "args": [], + "type": {"kind": "UNION", "name": "ProjectV2ItemContent", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fieldValueByName", + "args": [ + { + "name": "name", + "description": "The name of the field to return the field value of", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "UNION", "name": "ProjectV2ItemFieldValue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fieldValues", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for project v2 item field values returned from the connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ItemFieldValueOrder", + "ofType": None, + }, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldValueConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDatabaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isArchived", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "type", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2ItemType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemConnection", + "description": "The connection type for ProjectV2Item.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "ProjectV2ItemContent", + "description": "Types that can be inside Project Items.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "DraftIssue", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldDateValue", + "description": "The value of a date field in a Project item.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "date", + "args": [], + "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldIterationValue", + "description": "The value of an iteration field in a Project item.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "duration", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "iterationId", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startDate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "titleHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldLabelValue", + "description": "The value of the labels field in a Project item.", + "fields": [ + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labels", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldMilestoneValue", + "description": "The value of a milestone field in a Project item.", + "fields": [ + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "milestone", + "args": [], + "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldNumberValue", + "description": "The value of a number field in a Project item.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": {"kind": "SCALAR", "name": "Float", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldPullRequestValue", + "description": "The value of a pull request field in a Project item.", + "fields": [ + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequests", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests.", + "type": {"kind": "INPUT_OBJECT", "name": "PullRequestOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldRepositoryValue", + "description": "The value of a repository field in a Project item.", + "fields": [ + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldReviewerValue", + "description": "The value of a reviewers field in a Project item.", + "fields": [ + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "RequestedReviewerConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldSingleSelectValue", + "description": "The value of a single select field in a Project item.", + "fields": [ + { + "name": "color", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2SingleSelectFieldOptionColor", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "descriptionHTML", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nameHTML", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "optionId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldTextValue", + "description": "The value of a text field in a Project item.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "text", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldUserValue", + "description": "The value of a user field in a Project item.", + "fields": [ + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "users", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "ProjectV2ItemFieldValue", + "description": "Project field values", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "ProjectV2ItemFieldDateValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldIterationValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldLabelValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldMilestoneValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldNumberValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldPullRequestValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldRepositoryValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldReviewerValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldSingleSelectValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldTextValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldUserValue", "ofType": None}, + ], + }, + { + "kind": "INTERFACE", + "name": "ProjectV2ItemFieldValueCommon", + "description": "Common fields across different project field value types", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "ProjectV2ItemFieldDateValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldIterationValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldNumberValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldSingleSelectValue", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2ItemFieldTextValue", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldValueConnection", + "description": "The connection type for ProjectV2ItemFieldValue.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemFieldValueEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2ItemFieldValue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ItemFieldValueEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "ProjectV2ItemFieldValue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ItemFieldValueOrder", + "description": "Ordering options for project v2 item field value connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2ItemFieldValueOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2ItemFieldValueOrderField", + "description": "Properties by which project v2 item field value connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "POSITION", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ItemOrder", + "description": "Ordering options for project v2 item connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2ItemOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2ItemOrderField", + "description": "Properties by which project v2 item connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "POSITION", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2ItemType", + "description": "The type of a project item.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ISSUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, + {"name": "DRAFT_ISSUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REDACTED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationField", + "description": "An iteration field inside a project.", + "fields": [ + { + "name": "configuration", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldConfiguration", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dataType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2FieldType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2FieldCommon", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldConfiguration", + "description": "Iteration field configuration for a project.", + "fields": [ + { + "name": "completedIterations", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldIteration", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "duration", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "iterations", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldIteration", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startDay", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2IterationFieldIteration", + "description": "Iteration field iteration settings for a project.", + "fields": [ + { + "name": "duration", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startDate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "titleHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Order", + "description": "Ways in which lists of projects can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2OrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2OrderField", + "description": "Properties by which projects can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "TITLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Owner", + "description": "Represents an owner of a project.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsV2", + "args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, + "defaultValue": "{field: NUMBER, direction: DESC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "INTERFACE", + "name": "ProjectV2Recent", + "description": "Recent projects for the owner.", + "fields": [ + { + "name": "recentProjects", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "ENUM", + "name": "ProjectV2Roles", + "description": "The possible roles of a collaborator on a project.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + {"name": "READER", "isDeprecated": False, "deprecationReason": None}, + {"name": "WRITER", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectField", + "description": "A single select field inside a project.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dataType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2FieldType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "options", + "args": [ + { + "name": "names", + "description": "Filter returned options to only those matching these names, case insensitive.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectFieldOption", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2FieldCommon", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2SingleSelectFieldOption", + "description": "Single select field option for a configuration for a project.", + "fields": [ + { + "name": "color", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2SingleSelectFieldOptionColor", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "descriptionHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nameHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2SingleSelectFieldOptionColor", + "description": "The display color of a single-select field option.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "GRAY", "isDeprecated": False, "deprecationReason": None}, + {"name": "BLUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "GREEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "YELLOW", "isDeprecated": False, "deprecationReason": None}, + {"name": "ORANGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "RED", "isDeprecated": False, "deprecationReason": None}, + {"name": "PINK", "isDeprecated": False, "deprecationReason": None}, + {"name": "PURPLE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2SingleSelectFieldOptionInput", + "description": "Represents a single select field option", + "fields": None, + "inputFields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "color", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "ProjectV2SingleSelectFieldOptionColor", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "description", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortBy", + "description": "Represents a sort by field and direction.", + "fields": [ + { + "name": "direction", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByConnection", + "description": "The connection type for ProjectV2SortBy.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2SortByEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2SortBy", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2SortBy", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByField", + "description": "Represents a sort by field and direction.", + "fields": [ + { + "name": "direction", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "field", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByFieldConnection", + "description": "The connection type for ProjectV2SortByField.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2SortByFieldEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2SortByField", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2SortByFieldEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2SortByField", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2State", + "description": "The possible states of a project v2.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2View", + "description": "A view within a ProjectV2.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fields", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2FieldConfigurationConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "filter", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "groupBy", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2FieldConnection", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "The `ProjectV2View#order_by` API is deprecated in favour of the more capable `ProjectV2View#group_by_field` API. Check out the `ProjectV2View#group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC.", + }, + { + "name": "groupByFields", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2FieldConfigurationConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "layout", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2ViewLayout", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sortBy", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2SortByConnection", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "The `ProjectV2View#sort_by` API is deprecated in favour of the more capable `ProjectV2View#sort_by_fields` API. Check out the `ProjectV2View#sort_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC.", + }, + { + "name": "sortByFields", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2SortByFieldConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "verticalGroupBy", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2FieldConnection", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "The `ProjectV2View#vertical_group_by` API is deprecated in favour of the more capable `ProjectV2View#vertical_group_by_fields` API. Check out the `ProjectV2View#vertical_group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC.", + }, + { + "name": "verticalGroupByFields", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2FieldConfigurationConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibleFields", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the project v2 fields returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, + "defaultValue": "{field: POSITION, direction: ASC}", + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2FieldConnection", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "The `ProjectV2View#visibleFields` API is deprecated in favour of the more capable `ProjectV2View#fields` API. Check out the `ProjectV2View#fields` API as an example for the more capable alternative. Removal on 2023-01-01 UTC.", + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ViewConnection", + "description": "The connection type for ProjectV2View.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ViewEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2View", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2ViewEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2View", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2ViewLayout", + "description": "The layout of a project v2 view.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "BOARD_LAYOUT", "isDeprecated": False, "deprecationReason": None}, + {"name": "TABLE_LAYOUT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ROADMAP_LAYOUT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2ViewOrder", + "description": "Ordering options for project v2 view connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2ViewOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2ViewOrderField", + "description": "Properties by which project v2 view connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "POSITION", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2Workflow", + "description": "A workflow inside a project.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2WorkflowConnection", + "description": "The connection type for ProjectV2Workflow.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2WorkflowEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Workflow", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ProjectV2WorkflowEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Workflow", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectV2WorkflowOrder", + "description": "Ordering options for project v2 workflows connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectV2WorkflowsOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ProjectV2WorkflowsOrderField", + "description": "Properties by which project workflows can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, + {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PropertyTargetDefinition", + "description": "A property that must match", + "fields": [ + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "propertyValues", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "PropertyTargetDefinitionInput", + "description": "A property that must match", + "fields": None, + "inputFields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "propertyValues", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PublicKey", + "description": "A user's public key.", + "fields": [ + { + "name": "accessedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fingerprint", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isReadOnly", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "key", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PublicKeyConnection", + "description": "The connection type for PublicKey.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PublicKeyEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PublicKey", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PublicKeyEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PublicKey", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "PublishSponsorsTierInput", + "description": "Autogenerated input type of PublishSponsorsTier", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "tierId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PublishSponsorsTierPayload", + "description": "Autogenerated return type of PublishSponsorsTier", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsTier", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "description": "A repository pull request.", + "fields": [ + { + "name": "activeLockReason", + "args": [], + "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "additions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assignees", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "autoMergeRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "AutoMergeRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "baseRef", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "baseRefName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "baseRefOid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "baseRepository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "canBeRebased", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "changedFiles", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "checksResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "checksUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closingIssuesReferences", + "args": [ + { + "name": "userLinkedOnly", + "description": "Return only manually linked Issues", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comments", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for issue comments returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueCommentOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestCommitConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.", + }, + { + "name": "deletions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "files", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "PullRequestChangedFileConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDatabaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headRef", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headRefName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headRefOid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headRepository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "headRepositoryOwner", + "args": [], + "type": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hovercard", + "args": [ + { + "name": "includeNotificationContexts", + "description": "Whether or not to include notification contexts", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Hovercard", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCrossRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDraft", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isInMergeQueue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMergeQueueEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isReadByViewer", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labels", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "latestOpinionatedReviews", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "writersOnly", + "description": "Only return reviews from user who have write access to the repository", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": {"kind": "OBJECT", "name": "PullRequestReviewConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "latestReviews", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "PullRequestReviewConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "locked", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "maintainerCanModify", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeQueue", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeQueueEntry", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeStateStatus", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MergeStateStatus", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MergeableState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "merged", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergedBy", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "milestone", + "args": [], + "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "participants", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permalink", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "potentialMergeCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectCards", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "archivedStates", + "description": "A list of archived states to filter the cards by", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectCardArchivedState", "ofType": None}, + }, + "defaultValue": "[ARCHIVED, NOT_ARCHIVED]", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectCardConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectItems", + "args": [ + { + "name": "includeArchived", + "description": "Include archived items.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsV2", + "args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, + "defaultValue": "{field: NUMBER, direction: DESC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "revertResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "revertUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewDecision", + "args": [], + "type": {"kind": "ENUM", "name": "PullRequestReviewDecision", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewRequests", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "ReviewRequestConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewThreads", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewThreadConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviews", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the reviews.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewState", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "author", + "description": "Filter by author of the review.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "PullRequestReviewConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "statusCheckRollup", + "args": [], + "type": {"kind": "OBJECT", "name": "StatusCheckRollup", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "suggestedReviewers", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SuggestedReviewer", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "timeline", + "args": [ + { + "name": "since", + "description": "Allows filtering timeline events by a `since` timestamp.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestTimelineConnection", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "`timeline` will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.", + }, + { + "name": "timelineItems", + "args": [ + { + "name": "since", + "description": "Filter timeline items by a `since` timestamp.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "skip", + "description": "Skips the first _n_ elements in the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "itemTypes", + "description": "Filter timeline items by type.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestTimelineItemsItemType", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestTimelineItemsConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "titleHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCommentsCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanApplySuggestion", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanClose", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDeleteHeadRef", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDisableAutoMerge", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanEditFiles", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanEnableAutoMerge", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMergeAsAdmin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReopen", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSubscribe", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdateBranch", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerLatestReview", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerLatestReviewRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "ReviewRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerMergeBodyText", + "args": [ + { + "name": "mergeType", + "description": "The merge method for the message.", + "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerMergeHeadlineText", + "args": [ + { + "name": "mergeType", + "description": "The merge method for the message.", + "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerSubscription", + "args": [], + "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, + {"kind": "INTERFACE", "name": "Closable", "ofType": None}, + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, + {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestBranchUpdateMethod", + "description": "The possible methods for updating a pull request's head branch with the base branch.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MERGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REBASE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestChangedFile", + "description": "A file changed in a pull request.", + "fields": [ + { + "name": "additions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "changeType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PatchStatus", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerViewedState", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "FileViewedState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestChangedFileConnection", + "description": "The connection type for PullRequestChangedFile.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestChangedFileEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestChangedFile", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestChangedFileEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestChangedFile", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestCommit", + "description": "Represents a Git commit part of a pull request.", + "fields": [ + { + "name": "commit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitCommentThread", + "description": "Represents a commit comment thread part of a pull request.", + "fields": [ + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "position", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitConnection", + "description": "The connection type for PullRequestCommit.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestCommitEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestCommitEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestConnection", + "description": "The connection type for PullRequest.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestContributionsByRepository", + "description": "This aggregates pull requests opened by a user within one repository.", + "fields": [ + { + "name": "contributions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, + "defaultValue": "{direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestContributionConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestMergeMethod", + "description": "Represents available types of methods to use when merging a pull request.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MERGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SQUASH", "isDeprecated": False, "deprecationReason": None}, + {"name": "REBASE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "PullRequestOrder", + "description": "Ways in which lists of issues can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestOrderField", + "description": "Properties by which pull_requests connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestParameters", + "description": "Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.", + "fields": [ + { + "name": "dismissStaleReviewsOnPush", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requireCodeOwnerReview", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requireLastPushApproval", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiredApprovingReviewCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiredReviewThreadResolution", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "PullRequestParametersInput", + "description": "Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.", + "fields": None, + "inputFields": [ + { + "name": "dismissStaleReviewsOnPush", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "requireCodeOwnerReview", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "requireLastPushApproval", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "requiredApprovingReviewCount", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "requiredReviewThreadResolution", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReview", + "description": "A review object for a given pull request.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorCanPushToRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewCommentConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.", + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDatabaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMinimized", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizedReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "onBehalfOf", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestReviewState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "submittedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMinimize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewComment", + "description": "A review comment associated with a given repository pull request.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.", + }, + { + "name": "diffHunk", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "draftedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDatabaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMinimized", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "line", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "minimizedReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "originalCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "originalLine", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "originalPosition", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "We are phasing out diff-relative positioning for PR comments Removal on 2023-10-01 UTC.", + }, + { + "name": "originalStartLine", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "outdated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "position", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "We are phasing out diff-relative positioning for PR comments Use the `line` and `startLine` fields instead, which are file line numbers instead of diff line numbers Removal on 2023-10-01 UTC.", + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReview", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "replyTo", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startLine", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestReviewCommentState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subjectType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanMinimize", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewCommentConnection", + "description": "The connection type for PullRequestReviewComment.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestReviewCommentEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestReviewCommentState", + "description": "The possible states of a pull request review comment.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBMITTED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewConnection", + "description": "The connection type for PullRequestReview.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestReviewEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewContributionsByRepository", + "description": "This aggregates pull request reviews made by a user within one repository.", + "fields": [ + { + "name": "contributions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for contributions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, + "defaultValue": "{direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "CreatedPullRequestReviewContributionConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestReviewDecision", + "description": "The review status of a pull request.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CHANGES_REQUESTED", "isDeprecated": False, "deprecationReason": None}, + {"name": "APPROVED", "isDeprecated": False, "deprecationReason": None}, + {"name": "REVIEW_REQUIRED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestReviewEvent", + "description": "The possible events to perform on a pull request review.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "COMMENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "APPROVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REQUEST_CHANGES", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISMISS", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestReviewState", + "description": "The possible states of a pull request review.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMENTED", "isDeprecated": False, "deprecationReason": None}, + {"name": "APPROVED", "isDeprecated": False, "deprecationReason": None}, + {"name": "CHANGES_REQUESTED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISMISSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThread", + "description": "A threaded list of comments for a given pull request.", + "fields": [ + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "skip", + "description": "Skips the first _n_ elements in the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewCommentConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "diffSide", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCollapsed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isOutdated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isResolved", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "line", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "originalLine", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "originalStartLine", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resolvedBy", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startDiffSide", + "args": [], + "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startLine", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subjectType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReply", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanResolve", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUnresolve", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThreadConnection", + "description": "Review comment threads for a pull request review.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestReviewThreadEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestReviewThreadEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "description": "The possible subject types of a pull request review comment.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "LINE", "isDeprecated": False, "deprecationReason": None}, + {"name": "FILE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestRevisionMarker", + "description": "Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastSeenCommit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestState", + "description": "The possible states of a pull request.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, + {"name": "MERGED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestTemplate", + "description": "A repository pull request template.", + "fields": [ + { + "name": "body", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "filename", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestThread", + "description": "A threaded list of comments for a given pull request.", + "fields": [ + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "skip", + "description": "Skips the first _n_ elements in the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PullRequestReviewCommentConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "diffSide", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCollapsed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isOutdated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isResolved", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "line", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resolvedBy", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startDiffSide", + "args": [], + "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "startLine", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subjectType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "PullRequestReviewThreadSubjectType", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReply", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanResolve", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUnresolve", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestTimelineConnection", + "description": "The connection type for PullRequestTimelineItem.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestTimelineItemEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "PullRequestTimelineItem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "PullRequestTimelineItem", + "description": "An item in a pull request timeline", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "BaseRefDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "BaseRefForcePushedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Commit", "ofType": None}, + {"kind": "OBJECT", "name": "CommitCommentThread", "ofType": None}, + {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DeployedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DeploymentEnvironmentChangedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefForcePushedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefRestoredEvent", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MergedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, + {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewDismissedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewRequestRemovedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewRequestedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "PullRequestTimelineItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "PullRequestTimelineItem", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "PullRequestTimelineItems", + "description": "An item in a pull request timeline", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "AddedToMergeQueueEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AddedToProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutoMergeDisabledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutoMergeEnabledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutoRebaseEnabledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutoSquashEnabledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutomaticBaseChangeFailedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "AutomaticBaseChangeSucceededEvent", "ofType": None}, + {"kind": "OBJECT", "name": "BaseRefChangedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "BaseRefDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "BaseRefForcePushedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "CommentDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConnectedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertToDraftEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertedNoteToIssueEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertedToDiscussionEvent", "ofType": None}, + {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DeployedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DeploymentEnvironmentChangedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "DisconnectedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefDeletedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefForcePushedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "HeadRefRestoredEvent", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MarkedAsDuplicateEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MentionedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MergedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "MovedColumnsInProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "PinnedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestCommitCommentThread", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestRevisionMarker", "ofType": None}, + {"kind": "OBJECT", "name": "ReadyForReviewEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RemovedFromMergeQueueEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RemovedFromProjectEvent", "ofType": None}, + {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewDismissedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewRequestRemovedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewRequestedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "TransferredEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnmarkedAsDuplicateEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnpinnedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "PullRequestTimelineItemsConnection", + "description": "The connection type for PullRequestTimelineItems.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestTimelineItemsEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "filteredCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "PullRequestTimelineItems", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PullRequestTimelineItemsEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "PullRequestTimelineItems", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestTimelineItemsItemType", + "description": "The possible item types found in a timeline.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PULL_REQUEST_COMMIT", "isDeprecated": False, "deprecationReason": None}, + { + "name": "PULL_REQUEST_COMMIT_COMMENT_THREAD", + "isDeprecated": False, + "deprecationReason": None, + }, + {"name": "PULL_REQUEST_REVIEW", "isDeprecated": False, "deprecationReason": None}, + {"name": "PULL_REQUEST_REVIEW_THREAD", "isDeprecated": False, "deprecationReason": None}, + {"name": "PULL_REQUEST_REVISION_MARKER", "isDeprecated": False, "deprecationReason": None}, + { + "name": "AUTOMATIC_BASE_CHANGE_FAILED_EVENT", + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "AUTOMATIC_BASE_CHANGE_SUCCEEDED_EVENT", + "isDeprecated": False, + "deprecationReason": None, + }, + {"name": "AUTO_MERGE_DISABLED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "AUTO_MERGE_ENABLED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "AUTO_REBASE_ENABLED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "AUTO_SQUASH_ENABLED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "BASE_REF_CHANGED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "BASE_REF_FORCE_PUSHED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "BASE_REF_DELETED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "DEPLOYED_EVENT", "isDeprecated": False, "deprecationReason": None}, + { + "name": "DEPLOYMENT_ENVIRONMENT_CHANGED_EVENT", + "isDeprecated": False, + "deprecationReason": None, + }, + {"name": "HEAD_REF_DELETED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "HEAD_REF_FORCE_PUSHED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "HEAD_REF_RESTORED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MERGED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REVIEW_DISMISSED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REVIEW_REQUESTED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REVIEW_REQUEST_REMOVED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "READY_FOR_REVIEW_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONVERT_TO_DRAFT_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADDED_TO_MERGE_QUEUE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REMOVED_FROM_MERGE_QUEUE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ISSUE_COMMENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CROSS_REFERENCED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ADDED_TO_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ASSIGNED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMENT_DELETED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONNECTED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONVERTED_NOTE_TO_ISSUE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONVERTED_TO_DISCUSSION_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "DEMILESTONED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISCONNECTED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "LABELED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "LOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MARKED_AS_DUPLICATE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MENTIONED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MILESTONED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MOVED_COLUMNS_IN_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "PINNED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REFERENCED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REMOVED_FROM_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "RENAMED_TITLE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "REOPENED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIBED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "TRANSFERRED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNASSIGNED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNLABELED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNLOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "USER_BLOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNMARKED_AS_DUPLICATE_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNPINNED_EVENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNSUBSCRIBED_EVENT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "PullRequestUpdateState", + "description": "The possible target states when updating a pull request.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Push", + "description": "A Git push.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nextSha", + "args": [], + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permalink", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "previousSha", + "args": [], + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pusher", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PushAllowance", + "description": "A team, user, or app who has the ability to push to a protected branch.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "PushAllowanceActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "branchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "PushAllowanceActor", + "description": "Types that can be an actor.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "App", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "PushAllowanceConnection", + "description": "The connection type for PushAllowance.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PushAllowanceEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PushAllowance", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "PushAllowanceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "PushAllowance", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Query", + "description": "The query root of GitHub's GraphQL interface.", + "fields": [ + { + "name": "codeOfConduct", + "args": [ + { + "name": "key", + "description": "The code of conduct's key", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "CodeOfConduct", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "codesOfConduct", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CodeOfConduct", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [ + { + "name": "slug", + "description": "The enterprise URL slug.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "invitationToken", + "description": "The enterprise invitation token.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseAdministratorInvitation", + "args": [ + { + "name": "userLogin", + "description": "The login of the user invited to join the business.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "enterpriseSlug", + "description": "The slug of the enterprise the user was invited to join.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "role", + "description": "The role for the business member invitation.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseAdministratorRole", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseAdministratorInvitationByToken", + "args": [ + { + "name": "invitationToken", + "description": "The invitation token sent with the invitation email.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "license", + "args": [ + { + "name": "key", + "description": "The license's downcased SPDX ID", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "License", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "licenses", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "License", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "marketplaceCategories", + "args": [ + { + "name": "includeCategories", + "description": "Return only the specified categories.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "excludeEmpty", + "description": "Exclude categories with no listings.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "excludeSubcategories", + "description": "Returns top level categories only, excluding any subcategories.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "marketplaceCategory", + "args": [ + { + "name": "slug", + "description": "The URL slug of the category.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "useTopicAliases", + "description": "Also check topic aliases for the category slug", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "marketplaceListing", + "args": [ + { + "name": "slug", + "description": "Select the listing that matches this slug. It's the short name of the listing used in its URL.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "marketplaceListings", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "categorySlug", + "description": "Select only listings with the given category.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "useTopicAliases", + "description": "Also check topic aliases for the category slug", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "viewerCanAdmin", + "description": "Select listings to which user has admin access. If omitted, listings visible to the\\nviewer are returned.\\n", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "adminId", + "description": "Select listings that can be administered by the specified user.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "description": "Select listings for products owned by the specified organization.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "allStates", + "description": "Select listings visible to the viewer even if they are not approved. If omitted or\\nfalse, only approved listings will be returned.\\n", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "slugs", + "description": "Select the listings with these slugs, if they are visible to the viewer.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "primaryCategoryOnly", + "description": "Select only listings where the primary category matches the given category slug.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "withFreeTrialsOnly", + "description": "Select only listings that offer a free trial.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MarketplaceListingConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "meta", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GitHubMetadata", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [ + { + "name": "id", + "description": "ID of the object.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "INTERFACE", "name": "Node", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [ + { + "name": "ids", + "description": "The list of node IDs.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Node", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [ + { + "name": "login", + "description": "The organization's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rateLimit", + "args": [ + { + "name": "dryRun", + "description": "If true, calculate the cost for the query without evaluating it", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + } + ], + "type": {"kind": "OBJECT", "name": "RateLimit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "relay", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Query", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [ + { + "name": "owner", + "description": "The login field of a user or organization", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "description": "The name of the repository", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "followRenames", + "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryOwner", + "args": [ + { + "name": "login", + "description": "The username to lookup the owner by.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resource", + "args": [ + { + "name": "url", + "description": "The URL.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "search", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "type", + "description": "The types of search items to search within.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SearchType", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SearchResultItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "securityAdvisories", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for the returned topics.", + "type": {"kind": "INPUT_OBJECT", "name": "SecurityAdvisoryOrder", "ofType": None}, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + { + "name": "identifier", + "description": "Filter advisories by identifier, e.g. GHSA or CVE.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SecurityAdvisoryIdentifierFilter", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "publishedSince", + "description": "Filter advisories to those published since a time in the past.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "updatedSince", + "description": "Filter advisories to those updated since a time in the past.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "classifications", + "description": "A list of classifications to filter advisories by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityAdvisoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "securityAdvisory", + "args": [ + { + "name": "ghsaId", + "description": "GitHub Security Advisory ID.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "securityVulnerabilities", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for the returned topics.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SecurityVulnerabilityOrder", + "ofType": None, + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + { + "name": "ecosystem", + "description": "An ecosystem to filter vulnerabilities by.", + "type": {"kind": "ENUM", "name": "SecurityAdvisoryEcosystem", "ofType": None}, + "defaultValue": None, + }, + { + "name": "package", + "description": "A package name to filter vulnerabilities by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "severities", + "description": "A list of severities to filter vulnerabilities by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisorySeverity", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "classifications", + "description": "A list of advisory classifications to filter vulnerabilities by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityVulnerabilityConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorables", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for users and organizations returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorableOrder", "ofType": None}, + "defaultValue": "{field: LOGIN, direction: ASC}", + }, + { + "name": "onlyDependencies", + "description": "Whether only sponsorables who own the viewer's dependencies will be returned. Must be authenticated to use. Can check an organization instead for their dependencies owned by sponsorables by passing orgLoginForDependencies.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orgLoginForDependencies", + "description": "Optional organization username for whose dependencies should be checked. Used when onlyDependencies = true. Omit to check your own dependencies. If you are not an administrator of the organization, only dependencies from its public repositories will be considered.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "dependencyEcosystem", + "description": "Optional filter for which dependencies should be checked for sponsorable owners. Only sponsorable owners of dependencies in this ecosystem will be included. Used when onlyDependencies = true.\\n\\n**Upcoming Change on 2022-07-01 UTC**\\n**Description:** `dependencyEcosystem` will be removed. Use the ecosystem argument instead.\\n**Reason:** The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.\\n", + "type": {"kind": "ENUM", "name": "SecurityAdvisoryEcosystem", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ecosystem", + "description": "Optional filter for which dependencies should be checked for sponsorable owners. Only sponsorable owners of dependencies in this ecosystem will be included. Used when onlyDependencies = true.", + "type": {"kind": "ENUM", "name": "DependencyGraphEcosystem", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorableItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topic", + "args": [ + { + "name": "name", + "description": "The topic's name.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [ + { + "name": "login", + "description": "The user's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RateLimit", + "description": "Represents the client's rate limit.", + "fields": [ + { + "name": "cost", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "limit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodeCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "remaining", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resetAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "used", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Reactable", + "description": "Represents a subject that can be reacted on.", + "fields": [ + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + {"kind": "OBJECT", "name": "Release", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ReactingUserConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactingUserEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReactingUserEdge", + "description": "Represents a user that's made a reaction.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Reaction", + "description": "An emoji reaction to a particular piece of content.", + "fields": [ + { + "name": "content", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReactionConnection", + "description": "A list of reactions that have been left on the subject.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Reaction", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasReacted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ReactionContent", + "description": "Emojis that can be attached to Issues, Pull Requests and Comments.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "THUMBS_UP", "isDeprecated": False, "deprecationReason": None}, + {"name": "THUMBS_DOWN", "isDeprecated": False, "deprecationReason": None}, + {"name": "LAUGH", "isDeprecated": False, "deprecationReason": None}, + {"name": "HOORAY", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONFUSED", "isDeprecated": False, "deprecationReason": None}, + {"name": "HEART", "isDeprecated": False, "deprecationReason": None}, + {"name": "ROCKET", "isDeprecated": False, "deprecationReason": None}, + {"name": "EYES", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReactionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Reaction", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReactionGroup", + "description": "A group of emoji reactions to a particular piece of content.", + "fields": [ + { + "name": "content", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactors", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactorConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "users", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactingUserConnection", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "Reactors can now be mannequins, bots, and organizations. Use the `reactors` field instead. Removal on 2021-10-01 UTC.", + }, + { + "name": "viewerHasReacted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ReactionOrder", + "description": "Ways in which lists of reactions can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ReactionOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ReactionOrderField", + "description": "A list of fields that reactions can be ordered by.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "Reactor", + "description": "Types that can be assigned to reactions.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Bot", "ofType": None}, + {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ReactorConnection", + "description": "The connection type for Reactor.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactorEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "Reactor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReactorEdge", + "description": "Represents an author of a reaction.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "Reactor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReadyForReviewEvent", + "description": "Represents a 'ready_for_review' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Ref", + "description": "Represents a Git reference.", + "fields": [ + { + "name": "associatedPullRequests", + "args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "branchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "compare", + "args": [ + { + "name": "headRef", + "description": "The head ref to compare against.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Comparison", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "prefix", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "refUpdateRule", + "args": [], + "type": {"kind": "OBJECT", "name": "RefUpdateRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rules", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repository rules.", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryRuleOrder", "ofType": None}, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + ], + "type": {"kind": "OBJECT", "name": "RepositoryRuleConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "target", + "args": [], + "type": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RefConnection", + "description": "The connection type for Ref.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RefEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RefEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RefNameConditionTarget", + "description": "Parameters to be used for the ref_name condition", + "fields": [ + { + "name": "exclude", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "include", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RefNameConditionTargetInput", + "description": "Parameters to be used for the ref_name condition", + "fields": None, + "inputFields": [ + { + "name": "exclude", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "include", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RefOrder", + "description": "Ways in which lists of git refs can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RefOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RefOrderField", + "description": "Properties by which ref connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "TAG_COMMIT_DATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "ALPHABETICAL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RefUpdate", + "description": "A ref update", + "fields": None, + "inputFields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitRefname", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "afterOid", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "beforeOid", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "force", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RefUpdateRule", + "description": "Branch protection rules that are enforced on the viewer.", + "fields": [ + { + "name": "allowsDeletions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "allowsForcePushes", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blocksCreations", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pattern", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiredApprovingReviewCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiredStatusCheckContexts", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresCodeOwnerReviews", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresConversationResolution", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresLinearHistory", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requiresSignatures", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerAllowedToDismissReviews", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanPush", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReferencedEvent", + "description": "Represents a 'referenced' event on a given `ReferencedSubject`.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCrossRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDirectReference", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "ReferencedSubject", + "description": "Any referencable object", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesInput", + "description": "Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesPayload", + "description": "Autogenerated return type of RegenerateEnterpriseIdentityProviderRecoveryCodes", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "identityProvider", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RegenerateVerifiableDomainTokenInput", + "description": "Autogenerated input type of RegenerateVerifiableDomainToken", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RegenerateVerifiableDomainTokenPayload", + "description": "Autogenerated return type of RegenerateVerifiableDomainToken", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "verificationToken", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RejectDeploymentsInput", + "description": "Autogenerated input type of RejectDeployments", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "workflowRunId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "environmentIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + {"name": "comment", "type": {"kind": "SCALAR", "name": "String", "ofType": None}}, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RejectDeploymentsPayload", + "description": "Autogenerated return type of RejectDeployments", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployments", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Release", + "description": "A release contains the content for a release.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "descriptionHTML", + "args": [], + "type": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDraft", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isLatest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPrerelease", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mentions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "releaseAssets", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "name", + "description": "A name to filter the assets by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReleaseAssetConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "shortDescriptionHTML", + "args": [ + { + "name": "limit", + "description": "How many characters to return.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "200", + } + ], + "type": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tag", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tagCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tagName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReleaseAsset", + "description": "A release asset contains the content for a release asset.", + "fields": [ + { + "name": "contentType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "downloadCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "downloadUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "release", + "args": [], + "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "size", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "uploadedBy", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReleaseAssetConnection", + "description": "The connection type for ReleaseAsset.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReleaseAssetEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReleaseAsset", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReleaseAssetEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ReleaseAsset", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReleaseConnection", + "description": "The connection type for Release.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReleaseEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Release", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReleaseEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ReleaseOrder", + "description": "Ways in which lists of releases can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ReleaseOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ReleaseOrderField", + "description": "Properties by which release connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveAssigneesFromAssignableInput", + "description": "Autogenerated input type of RemoveAssigneesFromAssignable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "assignableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "assigneeIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveAssigneesFromAssignablePayload", + "description": "Autogenerated return type of RemoveAssigneesFromAssignable", + "fields": [ + { + "name": "assignable", + "args": [], + "type": {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseAdminInput", + "description": "Autogenerated input type of RemoveEnterpriseAdmin", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "login", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseAdminPayload", + "description": "Autogenerated return type of RemoveEnterpriseAdmin", + "fields": [ + { + "name": "admin", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseIdentityProviderInput", + "description": "Autogenerated input type of RemoveEnterpriseIdentityProvider", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseIdentityProviderPayload", + "description": "Autogenerated return type of RemoveEnterpriseIdentityProvider", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "identityProvider", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseMemberInput", + "description": "Autogenerated input type of RemoveEnterpriseMember", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseMemberPayload", + "description": "Autogenerated return type of RemoveEnterpriseMember", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseOrganizationInput", + "description": "Autogenerated input type of RemoveEnterpriseOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseOrganizationPayload", + "description": "Autogenerated return type of RemoveEnterpriseOrganization", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveEnterpriseSupportEntitlementInput", + "description": "Autogenerated input type of RemoveEnterpriseSupportEntitlement", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "login", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveEnterpriseSupportEntitlementPayload", + "description": "Autogenerated return type of RemoveEnterpriseSupportEntitlement", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveLabelsFromLabelableInput", + "description": "Autogenerated input type of RemoveLabelsFromLabelable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labelableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "labelIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveLabelsFromLabelablePayload", + "description": "Autogenerated return type of RemoveLabelsFromLabelable", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labelable", + "args": [], + "type": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveOutsideCollaboratorInput", + "description": "Autogenerated input type of RemoveOutsideCollaborator", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveOutsideCollaboratorPayload", + "description": "Autogenerated return type of RemoveOutsideCollaborator", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "removedUser", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveReactionInput", + "description": "Autogenerated input type of RemoveReaction", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "subjectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "content", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveReactionPayload", + "description": "Autogenerated return type of RemoveReaction", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reaction", + "args": [], + "type": {"kind": "OBJECT", "name": "Reaction", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStarInput", + "description": "Autogenerated input type of RemoveStar", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "starrableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveStarPayload", + "description": "Autogenerated return type of RemoveStar", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "starrable", + "args": [], + "type": {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveUpvoteInput", + "description": "Autogenerated input type of RemoveUpvote", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "subjectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemoveUpvotePayload", + "description": "Autogenerated return type of RemoveUpvote", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": {"kind": "INTERFACE", "name": "Votable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemovedFromMergeQueueEvent", + "description": "Represents a 'removed_from_merge_queue' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "beforeCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enqueuer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeQueue", + "args": [], + "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RemovedFromProjectEvent", + "description": "Represents a 'removed_from_project' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectColumnName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RenamedTitleEvent", + "description": "Represents a 'renamed' event on a given issue or pull request", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "currentTitle", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "previousTitle", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "RenamedTitleSubject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "RenamedTitleSubject", + "description": "An object which has a renamable title", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "ReopenDiscussionInput", + "description": "Autogenerated input type of ReopenDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "discussionId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReopenDiscussionPayload", + "description": "Autogenerated return type of ReopenDiscussion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ReopenIssueInput", + "description": "Autogenerated input type of ReopenIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "issueId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReopenIssuePayload", + "description": "Autogenerated return type of ReopenIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ReopenPullRequestInput", + "description": "Autogenerated input type of ReopenPullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReopenPullRequestPayload", + "description": "Autogenerated return type of ReopenPullRequest", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReopenedEvent", + "description": "Represents a 'reopened' event on any `Closable`.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Closable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stateReason", + "args": [], + "type": {"kind": "ENUM", "name": "IssueStateReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoAccessAuditEntry", + "description": "Audit log entry for a repo.access event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": {"kind": "ENUM", "name": "RepoAccessAuditEntryVisibility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepoAccessAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoAddMemberAuditEntry", + "description": "Audit log entry for a repo.add_member event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": {"kind": "ENUM", "name": "RepoAddMemberAuditEntryVisibility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepoAddMemberAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoAddTopicAuditEntry", + "description": "Audit log entry for a repo.add_topic event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topic", + "args": [], + "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topicName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "TopicAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoArchivedAuditEntry", + "description": "Audit log entry for a repo.archived event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": {"kind": "ENUM", "name": "RepoArchivedAuditEntryVisibility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepoArchivedAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoChangeMergeSettingAuditEntry", + "description": "Audit log entry for a repo.change_merge_setting event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isEnabled", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeType", + "args": [], + "type": { + "kind": "ENUM", + "name": "RepoChangeMergeSettingAuditEntryMergeType", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepoChangeMergeSettingAuditEntryMergeType", + "description": "The merge options available for pull requests to this repository.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MERGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REBASE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SQUASH", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", + "description": "Audit log entry for a repo.config.disable_anonymous_git_access event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", + "description": "Audit log entry for a repo.config.disable_collaborators_only event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableContributorsOnlyAuditEntry", + "description": "Audit log entry for a repo.config.disable_contributors_only event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", + "description": "Audit log entry for a repo.config.disable_sockpuppet_disallowed event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", + "description": "Audit log entry for a repo.config.enable_anonymous_git_access event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", + "description": "Audit log entry for a repo.config.enable_collaborators_only event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableContributorsOnlyAuditEntry", + "description": "Audit log entry for a repo.config.enable_contributors_only event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", + "description": "Audit log entry for a repo.config.enable_sockpuppet_disallowed event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigLockAnonymousGitAccessAuditEntry", + "description": "Audit log entry for a repo.config.lock_anonymous_git_access event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", + "description": "Audit log entry for a repo.config.unlock_anonymous_git_access event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoCreateAuditEntry", + "description": "Audit log entry for a repo.create event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "forkParentName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "forkSourceName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": {"kind": "ENUM", "name": "RepoCreateAuditEntryVisibility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepoCreateAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoDestroyAuditEntry", + "description": "Audit log entry for a repo.destroy event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": {"kind": "ENUM", "name": "RepoDestroyAuditEntryVisibility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepoDestroyAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoRemoveMemberAuditEntry", + "description": "Audit log entry for a repo.remove_member event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": {"kind": "ENUM", "name": "RepoRemoveMemberAuditEntryVisibility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepoRemoveMemberAuditEntryVisibility", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepoRemoveTopicAuditEntry", + "description": "Audit log entry for a repo.remove_topic event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topic", + "args": [], + "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topicName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "TopicAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ReportedContentClassifiers", + "description": "The reasons a piece of content can be reported or minimized.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "SPAM", "isDeprecated": False, "deprecationReason": None}, + {"name": "ABUSE", "isDeprecated": False, "deprecationReason": None}, + {"name": "OFF_TOPIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "OUTDATED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DUPLICATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "RESOLVED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Repository", + "description": "A repository contains the content for a project.", + "fields": [ + { + "name": "allowUpdateBranch", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "archivedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assignableUsers", + "args": [ + { + "name": "query", + "description": "Filters users with query on user name and login.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "autoMergeAllowed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "branchProtectionRules", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "BranchProtectionRuleConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "codeOfConduct", + "args": [], + "type": {"kind": "OBJECT", "name": "CodeOfConduct", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "codeowners", + "args": [ + { + "name": "refName", + "description": "The ref name used to return the associated `CODEOWNERS` file.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RepositoryCodeowners", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "collaborators", + "args": [ + { + "name": "affiliation", + "description": "Collaborators affiliation level with a repository.", + "type": {"kind": "ENUM", "name": "CollaboratorAffiliation", "ofType": None}, + "defaultValue": None, + }, + { + "name": "login", + "description": "The login of one specific collaborator.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "Filters users with query on user name and login", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "RepositoryCollaboratorConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitComments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contactLinks", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryContactLink", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contributingGuidelines", + "args": [], + "type": {"kind": "OBJECT", "name": "ContributingGuidelines", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "defaultBranchRef", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deleteBranchOnMerge", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dependencyGraphManifests", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "withDependencies", + "description": "Flag to scope to only manifests with dependencies", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "dependenciesFirst", + "description": "Number of dependencies to fetch", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "dependenciesAfter", + "description": "Cursor to paginate dependencies", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "DependencyGraphManifestConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployKeys", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeployKeyConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deployments", + "args": [ + { + "name": "environments", + "description": "Environments to list deployments for", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for deployments returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "DeploymentOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "descriptionHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [ + { + "name": "number", + "description": "The number for the discussion to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussionCategories", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "filterByAssignable", + "description": "Filter by categories that are assignable by the viewer.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCategoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussionCategory", + "args": [ + { + "name": "slug", + "description": "The slug of the discussion category to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "categoryId", + "description": "Only include discussions that belong to the category with this ID.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "states", + "description": "A list of states to filter the discussions by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DiscussionState", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + { + "name": "orderBy", + "description": "Ordering options for discussions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "DiscussionOrder", "ofType": None}, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + { + "name": "answered", + "description": "Only show answered or unanswered discussions", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "diskUsage", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environment", + "args": [ + { + "name": "name", + "description": "The name of the environment to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Environment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the environments", + "type": {"kind": "INPUT_OBJECT", "name": "Environments", "ofType": None}, + "defaultValue": "{field: NAME, direction: ASC}", + }, + { + "name": "names", + "description": "The names of the environments to be returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "EnvironmentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "forkCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "forkingAllowed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "forks", + "args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": "[OWNER, COLLABORATOR]", + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fundingLinks", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "FundingLink", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasDiscussionsEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasIssuesEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasProjectsEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasSponsorshipsEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasVulnerabilityAlertsEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasWikiEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "homepageUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "interactionAbility", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryInteractionAbility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isArchived", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isBlankIssuesEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDisabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isEmpty", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isFork", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isInOrganization", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isLocked", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMirror", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPrivate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSecurityPolicyEnabled", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isTemplate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isUserConfigurationRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [ + { + "name": "number", + "description": "The number for the issue to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issueOrPullRequest", + "args": [ + { + "name": "number", + "description": "The number for the issue to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issueTemplates", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueTemplate", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issues", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the issues by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "filterBy", + "description": "Filtering options for issues returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueFilters", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "label", + "args": [ + { + "name": "name", + "description": "Label name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Label", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labels", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for labels returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: ASC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "If provided, searches labels by name and description.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "languages", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "LanguageOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "LanguageConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "latestRelease", + "args": [], + "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "licenseInfo", + "args": [], + "type": {"kind": "OBJECT", "name": "License", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockReason", + "args": [], + "type": {"kind": "ENUM", "name": "RepositoryLockReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mentionableUsers", + "args": [ + { + "name": "query", + "description": "Filters users with query on user name and login", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeCommitAllowed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeCommitMessage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MergeCommitMessage", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeCommitTitle", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MergeCommitTitle", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mergeQueue", + "args": [ + { + "name": "branch", + "description": "The name of the branch to get the merge queue for. Case sensitive.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "milestone", + "args": [ + { + "name": "number", + "description": "The number for the milestone to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "milestones", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "states", + "description": "Filter by the state of the milestones.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MilestoneState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for milestones.", + "type": {"kind": "INPUT_OBJECT", "name": "MilestoneOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "Filters milestones with a query on the title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "MilestoneConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mirrorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nameWithOwner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "object", + "args": [ + { + "name": "oid", + "description": "The Git object ID", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "expression", + "description": "A Git revision expression suitable for rev-parse", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "openGraphImageUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "packages", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "names", + "description": "Find packages by their names.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "description": "Find packages in a repository by ID.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "packageType", + "description": "Filter registry package by type.", + "type": {"kind": "ENUM", "name": "PackageType", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": {"kind": "INPUT_OBJECT", "name": "PackageOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parent", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedDiscussions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnedDiscussionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedIssues", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "PinnedIssueConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "planFeatures", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryPlanFeatures", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "primaryLanguage", + "args": [], + "type": {"kind": "OBJECT", "name": "Language", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [ + { + "name": "number", + "description": "The project number to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [ + { + "name": "number", + "description": "The Project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projects", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for projects returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "search", + "description": "Query to search projects by, currently only searching by name.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the projects by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsV2", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "A project to search for linked to the repo.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, + "defaultValue": "{field: NUMBER, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [ + { + "name": "number", + "description": "The number for the pull request to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestTemplates", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestTemplate", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequests", + "args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pushedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rebaseMergeAllowed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "recentProjects", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [ + { + "name": "qualifiedName", + "description": "The ref to retrieve. Fully qualified matches are checked in order (`refs/heads/master`) before falling back onto checks for short name matches (`master`).", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "refs", + "args": [ + { + "name": "query", + "description": "Filters refs with query on name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "refPrefix", + "description": "A ref name prefix like `refs/heads/`, `refs/tags/`, etc.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "description": "DEPRECATED: use orderBy. The ordering direction.", + "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for refs returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "RefOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "RefConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "release", + "args": [ + { + "name": "tagName", + "description": "The name of the Tag the Release was created from", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "releases", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "ReleaseOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReleaseConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryTopics", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryTopicConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ruleset", + "args": [ + { + "name": "includeParents", + "description": "Include rulesets configured at higher levels that apply to this repository", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "databaseId", + "description": "The ID of the ruleset to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rulesets", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "includeParents", + "description": "Return rulesets configured at higher levels that apply to this repository", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": {"kind": "OBJECT", "name": "RepositoryRulesetConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "securityPolicyUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "shortDescriptionHTML", + "args": [ + { + "name": "limit", + "description": "How many characters to return.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "200", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "squashMergeAllowed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "squashMergeCommitMessage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SquashMergeCommitMessage", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "squashMergeCommitTitle", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SquashMergeCommitTitle", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "squashPrTitleUsedAsDefault", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "`squashPrTitleUsedAsDefault` will be removed. Use `Repository.squashMergeCommitTitle` instead. Removal on 2023-04-01 UTC.", + }, + { + "name": "sshUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitSSHRemote", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stargazerCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stargazers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StargazerConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "submodules", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SubmoduleConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tempCloneToken", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "templateRepository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "usesCustomOpenGraphImage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanAdminister", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanCreateProjects", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSubscribe", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdateTopics", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDefaultCommitEmail", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDefaultMergeMethod", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasStarred", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerPermission", + "args": [], + "type": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerPossibleCommitEmails", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerSubscription", + "args": [], + "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "vulnerabilityAlert", + "args": [ + { + "name": "number", + "description": "The number for the vulnerability alert to be returned.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "vulnerabilityAlerts", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "states", + "description": "Filter by the state of the alert", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertState", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "dependencyScopes", + "description": "Filter by the scope of the alert's dependency", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertDependencyScope", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlertConnection", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "watchers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "webCommitSignoffRequired", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "PackageOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2Recent", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryInfo", "ofType": None}, + {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, + {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryAffiliation", + "description": "The affiliation of a user to a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, + {"name": "COLLABORATOR", "isDeprecated": False, "deprecationReason": None}, + {"name": "ORGANIZATION_MEMBER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "RepositoryAuditEntryData", + "description": "Metadata for an audit entry with action repo.*", + "fields": [ + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", + "ofType": None, + }, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "RepositoryCodeowners", + "description": "Information extracted from a repository's `CODEOWNERS` file.", + "fields": [ + { + "name": "errors", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryCodeownersError", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryCodeownersError", + "description": "An error in a `CODEOWNERS` file.", + "fields": [ + { + "name": "column", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "kind", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "line", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "source", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "suggestion", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryCollaboratorConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryCollaboratorEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryCollaboratorEdge", + "description": "Represents a user who is a collaborator of a repository.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permission", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permissionSources", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PermissionSource", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryConnection", + "description": "A list of repositories owned by the subject.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalDiskUsage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryContactLink", + "description": "A repository contact link.", + "fields": [ + { + "name": "about", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryContributionType", + "description": "The reason a repository is listed as 'contributed'.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "COMMIT", "isDeprecated": False, "deprecationReason": None}, + {"name": "ISSUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, + {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, + {"name": "PULL_REQUEST_REVIEW", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "RepositoryDiscussionAuthor", + "description": "Represents an author of discussions in repositories.", + "fields": [ + { + "name": "repositoryDiscussions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for discussions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "DiscussionOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + { + "name": "repositoryId", + "description": "Filter discussions to only those in a specific repository.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "answered", + "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "states", + "description": "A list of states to filter the discussions by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DiscussionState", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "INTERFACE", + "name": "RepositoryDiscussionCommentAuthor", + "description": "Represents an author of discussion comments in repositories.", + "fields": [ + { + "name": "repositoryDiscussionComments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "description": "Filter discussion comments to only those in a specific repository.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "onlyAnswers", + "description": "Filter discussion comments to only those that were marked as the answer", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "RepositoryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryIdConditionTarget", + "description": "Parameters to be used for the repository_id condition", + "fields": [ + { + "name": "repositoryIds", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryIdConditionTargetInput", + "description": "Parameters to be used for the repository_id condition", + "fields": None, + "inputFields": [ + { + "name": "repositoryIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "RepositoryInfo", + "description": "A subset of repository info.", + "fields": [ + { + "name": "archivedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "descriptionHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "forkCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasDiscussionsEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasIssuesEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasProjectsEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasSponsorshipsEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasWikiEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "homepageUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isArchived", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isFork", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isInOrganization", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isLocked", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isMirror", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPrivate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isTemplate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "licenseInfo", + "args": [], + "type": {"kind": "OBJECT", "name": "License", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockReason", + "args": [], + "type": {"kind": "ENUM", "name": "RepositoryLockReason", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mirrorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nameWithOwner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "openGraphImageUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pushedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "shortDescriptionHTML", + "args": [ + { + "name": "limit", + "description": "How many characters to return.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "200", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "usesCustomOpenGraphImage", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "visibility", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [{"kind": "OBJECT", "name": "Repository", "ofType": None}], + }, + { + "kind": "OBJECT", + "name": "RepositoryInteractionAbility", + "description": "Repository interaction limit that applies to this object.", + "fields": [ + { + "name": "expiresAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "limit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "origin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimitOrigin", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryInteractionLimit", + "description": "A repository interaction limit.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "EXISTING_USERS", "isDeprecated": False, "deprecationReason": None}, + {"name": "CONTRIBUTORS_ONLY", "isDeprecated": False, "deprecationReason": None}, + {"name": "COLLABORATORS_ONLY", "isDeprecated": False, "deprecationReason": None}, + {"name": "NO_LIMIT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryInteractionLimitExpiry", + "description": "The length for a repository interaction limit to be enabled for.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ONE_DAY", "isDeprecated": False, "deprecationReason": None}, + {"name": "THREE_DAYS", "isDeprecated": False, "deprecationReason": None}, + {"name": "ONE_WEEK", "isDeprecated": False, "deprecationReason": None}, + {"name": "ONE_MONTH", "isDeprecated": False, "deprecationReason": None}, + {"name": "SIX_MONTHS", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryInteractionLimitOrigin", + "description": "Indicates where an interaction limit is configured.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, + {"name": "ORGANIZATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "USER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryInvitation", + "description": "An invitation for a user to be added to a repository.", + "fields": [ + { + "name": "email", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitee", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "inviter", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permalink", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permission", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "INTERFACE", "name": "RepositoryInfo", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryInvitationConnection", + "description": "A list of repository invitations.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryInvitationEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryInvitation", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryInvitationEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryInvitation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryInvitationOrder", + "description": "Ordering options for repository invitation connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryInvitationOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryInvitationOrderField", + "description": "Properties by which repository invitation connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryLockReason", + "description": "The possible reasons a given repository could be in a locked state.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MOVING", "isDeprecated": False, "deprecationReason": None}, + {"name": "BILLING", "isDeprecated": False, "deprecationReason": None}, + {"name": "RENAME", "isDeprecated": False, "deprecationReason": None}, + {"name": "MIGRATING", "isDeprecated": False, "deprecationReason": None}, + {"name": "TRADE_RESTRICTION", "isDeprecated": False, "deprecationReason": None}, + {"name": "TRANSFERRING_OWNERSHIP", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryMigration", + "description": "A GitHub Enterprise Importer (GEI) repository migration.", + "fields": [ + { + "name": "continueOnError", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "failureReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "migrationLogUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "migrationSource", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "MigrationSource", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sourceUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "MigrationState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "warningsCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Migration", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryMigrationConnection", + "description": "A list of migrations.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryMigrationEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryMigrationEdge", + "description": "Represents a repository migration.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryMigrationOrder", + "description": "Ordering options for repository migrations.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryMigrationOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryMigrationOrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryMigrationOrderDirection", + "description": "Possible directions in which to order a list of repository migrations when provided an `orderBy` argument.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ASC", "isDeprecated": False, "deprecationReason": None}, + {"name": "DESC", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryMigrationOrderField", + "description": "Properties by which repository migrations can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryNameConditionTarget", + "description": "Parameters to be used for the repository_name condition", + "fields": [ + { + "name": "exclude", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "include", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "protected", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryNameConditionTargetInput", + "description": "Parameters to be used for the repository_name condition", + "fields": None, + "inputFields": [ + { + "name": "exclude", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "include", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "protected", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "RepositoryNode", + "description": "Represents a object that belongs to a repository.", + "fields": [ + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + {"kind": "OBJECT", "name": "CommitCommentThread", "ofType": None}, + {"kind": "OBJECT", "name": "DependabotUpdate", "ofType": None}, + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "PinnedDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestCommitCommentThread", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryOrder", + "description": "Ordering options for repository connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryOrderField", + "description": "Properties by which repository connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUSHED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, + {"name": "STARGAZERS", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "RepositoryOwner", + "description": "Represents an owner of a Repository.", + "fields": [ + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositories", + "args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": "[OWNER, COLLABORATOR]", + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isArchived", + "description": "If non-null, filters repositories according to whether they are archived and not maintained", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isFork", + "description": "If non-null, filters repositories according to whether they are forks of another repository", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [ + { + "name": "name", + "description": "Name of Repository to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "followRenames", + "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "ENUM", + "name": "RepositoryPermission", + "description": "The access level to a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "MAINTAIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "WRITE", "isDeprecated": False, "deprecationReason": None}, + {"name": "TRIAGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "READ", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryPlanFeatures", + "description": "Information about the availability of features and limits for a repository based on its billing plan.", + "fields": [ + { + "name": "codeowners", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "draftPullRequests", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "maximumAssignees", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "maximumManualReviewRequests", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamReviewRequests", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryPrivacy", + "description": "The privacy of a repository", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryPropertyConditionTarget", + "description": "Parameters to be used for the repository_property condition", + "fields": [ + { + "name": "exclude", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PropertyTargetDefinition", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "include", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "PropertyTargetDefinition", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryPropertyConditionTargetInput", + "description": "Parameters to be used for the repository_property condition", + "fields": None, + "inputFields": [ + { + "name": "exclude", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PropertyTargetDefinitionInput", + "ofType": None, + }, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "include", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PropertyTargetDefinitionInput", + "ofType": None, + }, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRule", + "description": "A repository rule.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parameters", + "args": [], + "type": {"kind": "UNION", "name": "RuleParameters", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryRuleset", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "type", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryRuleType", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleConditions", + "description": "Set of conditions that determine if a ruleset will evaluate", + "fields": [ + { + "name": "refName", + "args": [], + "type": {"kind": "OBJECT", "name": "RefNameConditionTarget", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryId", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryIdConditionTarget", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryNameConditionTarget", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryProperty", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryPropertyConditionTarget", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleConditionsInput", + "description": "Specifies the conditions required for a ruleset to evaluate", + "fields": None, + "inputFields": [ + { + "name": "refName", + "type": {"kind": "INPUT_OBJECT", "name": "RefNameConditionTargetInput", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryName", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryNameConditionTargetInput", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryIdConditionTargetInput", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "repositoryProperty", + "type": { + "kind": "INPUT_OBJECT", + "name": "RepositoryPropertyConditionTargetInput", + "ofType": None, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleConnection", + "description": "The connection type for RepositoryRule.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryRuleEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryRule", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleInput", + "description": "Specifies the attributes for a new or updated rule.", + "fields": None, + "inputFields": [ + {"name": "id", "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, "defaultValue": None}, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryRuleType", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "parameters", + "type": {"kind": "INPUT_OBJECT", "name": "RuleParametersInput", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryRuleOrder", + "description": "Ordering options for repository rules.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryRuleOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryRuleOrderField", + "description": "Properties by which repository rule connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "TYPE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryRuleType", + "description": "The rule types supported in rulesets", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "DELETION", "isDeprecated": False, "deprecationReason": None}, + {"name": "REQUIRED_LINEAR_HISTORY", "isDeprecated": False, "deprecationReason": None}, + {"name": "MERGE_QUEUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REQUIRED_REVIEW_THREAD_RESOLUTION", "isDeprecated": False, "deprecationReason": None}, + {"name": "REQUIRED_DEPLOYMENTS", "isDeprecated": False, "deprecationReason": None}, + {"name": "REQUIRED_SIGNATURES", "isDeprecated": False, "deprecationReason": None}, + {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, + {"name": "REQUIRED_STATUS_CHECKS", "isDeprecated": False, "deprecationReason": None}, + {"name": "REQUIRED_WORKFLOW_STATUS_CHECKS", "isDeprecated": False, "deprecationReason": None}, + {"name": "NON_FAST_FORWARD", "isDeprecated": False, "deprecationReason": None}, + {"name": "AUTHORIZATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "TAG", "isDeprecated": False, "deprecationReason": None}, + {"name": "MERGE_QUEUE_LOCKED_REF", "isDeprecated": False, "deprecationReason": None}, + {"name": "LOCK_BRANCH", "isDeprecated": False, "deprecationReason": None}, + {"name": "MAX_REF_UPDATES", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMIT_MESSAGE_PATTERN", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMIT_AUTHOR_EMAIL_PATTERN", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMITTER_EMAIL_PATTERN", "isDeprecated": False, "deprecationReason": None}, + {"name": "BRANCH_NAME_PATTERN", "isDeprecated": False, "deprecationReason": None}, + {"name": "TAG_NAME_PATTERN", "isDeprecated": False, "deprecationReason": None}, + {"name": "WORKFLOWS", "isDeprecated": False, "deprecationReason": None}, + {"name": "SECRET_SCANNING", "isDeprecated": False, "deprecationReason": None}, + {"name": "WORKFLOW_UPDATES", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRuleset", + "description": "A repository ruleset.", + "fields": [ + { + "name": "bypassActors", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActorConnection", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "conditions", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryRuleConditions", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enforcement", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RuleEnforcement", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "rules", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "type", + "description": "The type of rule.", + "type": {"kind": "ENUM", "name": "RepositoryRuleType", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "RepositoryRuleConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "source", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "RuleSource", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "target", + "args": [], + "type": {"kind": "ENUM", "name": "RepositoryRulesetTarget", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActor", + "description": "A team or app that has the ability to bypass a rules defined on a ruleset", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "BypassActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bypassMode", + "args": [], + "type": {"kind": "ENUM", "name": "RepositoryRulesetBypassActorBypassMode", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationAdmin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryRoleDatabaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryRoleName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryRuleset", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryRulesetBypassActorBypassMode", + "description": "The bypass mode for a specific actor on a ruleset.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ALWAYS", "isDeprecated": False, "deprecationReason": None}, + {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActorConnection", + "description": "The connection type for RepositoryRulesetBypassActor.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActorEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryRulesetBypassActor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetBypassActorEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryRulesetBypassActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RepositoryRulesetBypassActorInput", + "description": "Specifies the attributes for a new or updated ruleset bypass actor. Only one of `actor_id`, `repository_role_database_id`, or `organization_admin` should be specified.", + "fields": None, + "inputFields": [ + { + "name": "actorId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryRoleDatabaseId", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationAdmin", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "bypassMode", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryRulesetBypassActorBypassMode", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetConnection", + "description": "The connection type for RepositoryRuleset.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryRulesetEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryRulesetEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryRulesetTarget", + "description": "The targets supported for rulesets", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "BRANCH", "isDeprecated": False, "deprecationReason": None}, + {"name": "TAG", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryTopic", + "description": "A repository-topic connects a repository to a topic.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topic", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Topic", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryTopicConnection", + "description": "The connection type for RepositoryTopic.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryTopicEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryTopic", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryTopicEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryTopic", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryVisibility", + "description": "The repository's visibility level.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeDisableAuditEntry", + "description": "Audit log entry for a repository_visibility_change.disable event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryVisibilityChangeEnableAuditEntry", + "description": "Audit log entry for a repository_visibility_change.enable event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseSlug", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterpriseUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlert", + "description": "A Dependabot alert for a repository with a dependency affected by a security vulnerability.", + "fields": [ + { + "name": "autoDismissedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dependabotUpdate", + "args": [], + "type": {"kind": "OBJECT", "name": "DependabotUpdate", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dependencyScope", + "args": [], + "type": { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertDependencyScope", + "ofType": None, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismissComment", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismissReason", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismissedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismisser", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fixedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "securityAdvisory", + "args": [], + "type": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "securityVulnerability", + "args": [], + "type": {"kind": "OBJECT", "name": "SecurityVulnerability", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryVulnerabilityAlertState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "vulnerableManifestFilename", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "vulnerableManifestPath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "vulnerableRequirements", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlertConnection", + "description": "The connection type for RepositoryVulnerabilityAlert.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlertEdge", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertDependencyScope", + "description": "The possible scopes of an alert's dependency.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "RUNTIME", "isDeprecated": False, "deprecationReason": None}, + {"name": "DEVELOPMENT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RepositoryVulnerabilityAlertEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RepositoryVulnerabilityAlertState", + "description": "The possible states of an alert", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "FIXED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISMISSED", "isDeprecated": False, "deprecationReason": None}, + {"name": "AUTO_DISMISSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestReviewsInput", + "description": "Autogenerated input type of RequestReviews", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "userIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "teamIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "union", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RequestReviewsPayload", + "description": "Autogenerated return type of RequestReviews", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requestedReviewersEdge", + "args": [], + "type": {"kind": "OBJECT", "name": "UserEdge", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RequestableCheckStatusState", + "description": "The possible states that can be requested when creating a check run.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, + {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "RequestedReviewer", + "description": "Types that can be requested reviewers.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Bot", "ofType": None}, + {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "RequestedReviewerConnection", + "description": "The connection type for RequestedReviewer.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RequestedReviewerEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RequestedReviewerEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "RequirableByPullRequest", + "description": "Represents a type that can be required by a pull request for merging.", + "fields": [ + { + "name": "isRequired", + "args": [ + { + "name": "pullRequestId", + "description": "The id of the pull request this is required for", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestNumber", + "description": "The number of the pull request this is required for", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, + {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "RequiredDeploymentsParameters", + "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", + "fields": [ + { + "name": "requiredDeploymentEnvironments", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RequiredDeploymentsParametersInput", + "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", + "fields": None, + "inputFields": [ + { + "name": "requiredDeploymentEnvironments", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "defaultValue": None, + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RequiredStatusCheckDescription", + "description": "Represents a required status check for a protected branch, but not any specific run of that check.", + "fields": [ + { + "name": "app", + "args": [], + "type": {"kind": "OBJECT", "name": "App", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "context", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusCheckInput", + "description": "Specifies the attributes for a new or updated required status check.", + "fields": None, + "inputFields": [ + { + "name": "context", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "appId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RequiredStatusChecksParameters", + "description": "Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.", + "fields": [ + { + "name": "requiredStatusChecks", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusCheckConfiguration", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "strictRequiredStatusChecksPolicy", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusChecksParametersInput", + "description": "Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.", + "fields": None, + "inputFields": [ + { + "name": "requiredStatusChecks", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusCheckConfigurationInput", + "ofType": None, + }, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "strictRequiredStatusChecksPolicy", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RerequestCheckSuiteInput", + "description": "Autogenerated input type of RerequestCheckSuite", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "checkSuiteId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RerequestCheckSuitePayload", + "description": "Autogenerated return type of RerequestCheckSuite", + "fields": [ + { + "name": "checkSuite", + "args": [], + "type": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "ResolveReviewThreadInput", + "description": "Autogenerated input type of ResolveReviewThread", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "threadId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ResolveReviewThreadPayload", + "description": "Autogenerated return type of ResolveReviewThread", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "thread", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RestrictedContribution", + "description": "Represents a private contribution a user made on GitHub.", + "fields": [ + { + "name": "isRestricted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "occurredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RetireSponsorsTierInput", + "description": "Autogenerated input type of RetireSponsorsTier", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "tierId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RetireSponsorsTierPayload", + "description": "Autogenerated return type of RetireSponsorsTier", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsTier", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RevertPullRequestInput", + "description": "Autogenerated input type of RevertPullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "draft", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RevertPullRequestPayload", + "description": "Autogenerated return type of RevertPullRequest", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "revertPullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewDismissalAllowance", + "description": "A user, team, or app who has the ability to dismiss a review on a protected branch.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "ReviewDismissalAllowanceActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "branchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "ReviewDismissalAllowanceActor", + "description": "Types that can be an actor.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "App", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "ReviewDismissalAllowanceConnection", + "description": "The connection type for ReviewDismissalAllowance.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReviewDismissalAllowanceEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReviewDismissalAllowance", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewDismissalAllowanceEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ReviewDismissalAllowance", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewDismissedEvent", + "description": "Represents a 'review_dismissed' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismissalMessage", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dismissalMessageHTML", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "previousReviewState", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestReviewState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestCommit", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "review", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewRequest", + "description": "A request for a user to review a pull request.", + "fields": [ + { + "name": "asCodeOwner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requestedReviewer", + "args": [], + "type": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewRequestConnection", + "description": "The connection type for ReviewRequest.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReviewRequestEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReviewRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewRequestEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "ReviewRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewRequestRemovedEvent", + "description": "Represents an 'review_request_removed' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requestedReviewer", + "args": [], + "type": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewRequestedEvent", + "description": "Represents an 'review_requested' event on a given pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "requestedReviewer", + "args": [], + "type": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ReviewStatusHovercardContext", + "description": "A hovercard context with a message describing the current code review state of the pull\\nrequest.\\n", + "fields": [ + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "octicon", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewDecision", + "args": [], + "type": {"kind": "ENUM", "name": "PullRequestReviewDecision", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RevokeEnterpriseOrganizationsMigratorRoleInput", + "description": "Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "login", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RevokeEnterpriseOrganizationsMigratorRolePayload", + "description": "Autogenerated return type of RevokeEnterpriseOrganizationsMigratorRole", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "RevokeMigratorRoleInput", + "description": "Autogenerated input type of RevokeMigratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "actor", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "actorType", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ActorType", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "RevokeMigratorRolePayload", + "description": "Autogenerated return type of RevokeMigratorRole", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "success", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RoleInOrganization", + "description": "Possible roles a user may have in relation to an organization.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, + {"name": "DIRECT_MEMBER", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNAFFILIATED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "RuleEnforcement", + "description": "The level of enforcement for a rule or ruleset.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "ACTIVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "EVALUATE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "RuleParameters", + "description": "Types which can be parameters for `RepositoryRule` objects.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "BranchNamePatternParameters", "ofType": None}, + {"kind": "OBJECT", "name": "CommitAuthorEmailPatternParameters", "ofType": None}, + {"kind": "OBJECT", "name": "CommitMessagePatternParameters", "ofType": None}, + {"kind": "OBJECT", "name": "CommitterEmailPatternParameters", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestParameters", "ofType": None}, + {"kind": "OBJECT", "name": "RequiredDeploymentsParameters", "ofType": None}, + {"kind": "OBJECT", "name": "RequiredStatusChecksParameters", "ofType": None}, + {"kind": "OBJECT", "name": "TagNamePatternParameters", "ofType": None}, + {"kind": "OBJECT", "name": "UpdateParameters", "ofType": None}, + {"kind": "OBJECT", "name": "WorkflowsParameters", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "RuleParametersInput", + "description": "Specifies the parameters for a `RepositoryRule` object. Only one of the fields should be specified.", + "fields": None, + "inputFields": [ + { + "name": "update", + "type": {"kind": "INPUT_OBJECT", "name": "UpdateParametersInput", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiredDeployments", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequiredDeploymentsParametersInput", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "pullRequest", + "type": {"kind": "INPUT_OBJECT", "name": "PullRequestParametersInput", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiredStatusChecks", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusChecksParametersInput", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "commitMessagePattern", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommitMessagePatternParametersInput", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "commitAuthorEmailPattern", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommitAuthorEmailPatternParametersInput", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "committerEmailPattern", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommitterEmailPatternParametersInput", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "branchNamePattern", + "type": { + "kind": "INPUT_OBJECT", + "name": "BranchNamePatternParametersInput", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "tagNamePattern", + "type": {"kind": "INPUT_OBJECT", "name": "TagNamePatternParametersInput", "ofType": None}, + "defaultValue": None, + }, + { + "name": "workflows", + "type": {"kind": "INPUT_OBJECT", "name": "WorkflowsParametersInput", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "RuleSource", + "description": "Types which can have `RepositoryRule` objects.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + ], + }, + { + "kind": "ENUM", + "name": "SamlDigestAlgorithm", + "description": "The possible digest algorithms used to sign SAML requests for an identity provider.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "SHA1", "isDeprecated": False, "deprecationReason": None}, + {"name": "SHA256", "isDeprecated": False, "deprecationReason": None}, + {"name": "SHA384", "isDeprecated": False, "deprecationReason": None}, + {"name": "SHA512", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SamlSignatureAlgorithm", + "description": "The possible signature algorithms used to sign SAML requests for a Identity Provider.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "RSA_SHA1", "isDeprecated": False, "deprecationReason": None}, + {"name": "RSA_SHA256", "isDeprecated": False, "deprecationReason": None}, + {"name": "RSA_SHA384", "isDeprecated": False, "deprecationReason": None}, + {"name": "RSA_SHA512", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SavedReply", + "description": "A Saved Reply is text a user can use to reply quickly.", + "fields": [ + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SavedReplyConnection", + "description": "The connection type for SavedReply.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SavedReplyEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SavedReply", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SavedReplyEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "SavedReply", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SavedReplyOrder", + "description": "Ordering options for saved reply connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SavedReplyOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SavedReplyOrderField", + "description": "Properties by which saved reply connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "SearchResultItem", + "description": "The results of a search.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "App", "ofType": None}, + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "SearchResultItemConnection", + "description": "A list of results that matched against a search query. Regardless of the number of matches, a maximum of 1,000 results will be available across all types, potentially split across many pages.", + "fields": [ + { + "name": "codeCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussionCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SearchResultItemEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issueCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "SearchResultItem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "wikiCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SearchResultItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "SearchResultItem", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "textMatches", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TextMatch", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SearchType", + "description": "Represents the individual results of a search.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ISSUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, + {"name": "USER", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISCUSSION", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisory", + "description": "A GitHub Security Advisory", + "fields": [ + { + "name": "classification", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SecurityAdvisoryClassification", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "cvss", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CVSS", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "cwes", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CWEConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ghsaId", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "identifiers", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisoryIdentifier", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "notificationsPermalink", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "origin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permalink", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publishedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "references", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SecurityAdvisoryReference", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "severity", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SecurityAdvisorySeverity", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "summary", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "vulnerabilities", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for the returned topics.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SecurityVulnerabilityOrder", + "ofType": None, + }, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + { + "name": "ecosystem", + "description": "An ecosystem to filter vulnerabilities by.", + "type": {"kind": "ENUM", "name": "SecurityAdvisoryEcosystem", "ofType": None}, + "defaultValue": None, + }, + { + "name": "package", + "description": "A package name to filter vulnerabilities by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "severities", + "description": "A list of severities to filter vulnerabilities by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisorySeverity", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "classifications", + "description": "A list of advisory classifications to filter vulnerabilities by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityVulnerabilityConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "withdrawnAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SecurityAdvisoryClassification", + "description": "Classification of the advisory.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "GENERAL", "isDeprecated": False, "deprecationReason": None}, + {"name": "MALWARE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryConnection", + "description": "The connection type for SecurityAdvisory.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityAdvisoryEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SecurityAdvisoryEcosystem", + "description": "The possible ecosystems of a security vulnerability's package.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "COMPOSER", "isDeprecated": False, "deprecationReason": None}, + {"name": "ERLANG", "isDeprecated": False, "deprecationReason": None}, + {"name": "ACTIONS", "isDeprecated": False, "deprecationReason": None}, + {"name": "GO", "isDeprecated": False, "deprecationReason": None}, + {"name": "MAVEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "NPM", "isDeprecated": False, "deprecationReason": None}, + {"name": "NUGET", "isDeprecated": False, "deprecationReason": None}, + {"name": "PIP", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUB", "isDeprecated": False, "deprecationReason": None}, + {"name": "RUBYGEMS", "isDeprecated": False, "deprecationReason": None}, + {"name": "RUST", "isDeprecated": False, "deprecationReason": None}, + {"name": "SWIFT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryIdentifier", + "description": "A GitHub Security Advisory Identifier", + "fields": [ + { + "name": "type", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "value", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SecurityAdvisoryIdentifierFilter", + "description": "An advisory identifier to filter results on.", + "fields": None, + "inputFields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SecurityAdvisoryIdentifierType", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SecurityAdvisoryIdentifierType", + "description": "Identifier formats available for advisories.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "GHSA", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SecurityAdvisoryOrder", + "description": "Ordering options for security advisory connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SecurityAdvisoryOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SecurityAdvisoryOrderField", + "description": "Properties by which security advisory connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PUBLISHED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryPackage", + "description": "An individual package", + "fields": [ + { + "name": "ecosystem", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SecurityAdvisoryEcosystem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryPackageVersion", + "description": "An individual package version", + "fields": [ + { + "name": "identifier", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityAdvisoryReference", + "description": "A GitHub Security Advisory Reference", + "fields": [ + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SecurityAdvisorySeverity", + "description": "Severity of the vulnerability.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "LOW", "isDeprecated": False, "deprecationReason": None}, + {"name": "MODERATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "HIGH", "isDeprecated": False, "deprecationReason": None}, + {"name": "CRITICAL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityVulnerability", + "description": "An individual vulnerability within an Advisory", + "fields": [ + { + "name": "advisory", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "firstPatchedVersion", + "args": [], + "type": {"kind": "OBJECT", "name": "SecurityAdvisoryPackageVersion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "package", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityAdvisoryPackage", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "severity", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SecurityAdvisorySeverity", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "vulnerableVersionRange", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityVulnerabilityConnection", + "description": "The connection type for SecurityVulnerability.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityVulnerabilityEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SecurityVulnerability", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SecurityVulnerabilityEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "SecurityVulnerability", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SecurityVulnerabilityOrder", + "description": "Ordering options for security vulnerability connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SecurityVulnerabilityOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SecurityVulnerabilityOrderField", + "description": "Properties by which security vulnerability connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SetEnterpriseIdentityProviderInput", + "description": "Autogenerated input type of SetEnterpriseIdentityProvider", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ssoUrl", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "issuer", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "idpCertificate", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "signatureMethod", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SamlSignatureAlgorithm", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "digestMethod", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SamlDigestAlgorithm", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SetEnterpriseIdentityProviderPayload", + "description": "Autogenerated return type of SetEnterpriseIdentityProvider", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "identityProvider", + "args": [], + "type": {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrganizationInteractionLimitInput", + "description": "Autogenerated input type of SetOrganizationInteractionLimit", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "limit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimit", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "expiry", + "type": {"kind": "ENUM", "name": "RepositoryInteractionLimitExpiry", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SetOrganizationInteractionLimitPayload", + "description": "Autogenerated return type of SetOrganizationInteractionLimit", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SetRepositoryInteractionLimitInput", + "description": "Autogenerated input type of SetRepositoryInteractionLimit", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "limit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimit", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "expiry", + "type": {"kind": "ENUM", "name": "RepositoryInteractionLimitExpiry", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SetRepositoryInteractionLimitPayload", + "description": "Autogenerated return type of SetRepositoryInteractionLimit", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SetUserInteractionLimitInput", + "description": "Autogenerated input type of SetUserInteractionLimit", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "limit", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimit", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "expiry", + "type": {"kind": "ENUM", "name": "RepositoryInteractionLimitExpiry", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SetUserInteractionLimitPayload", + "description": "Autogenerated return type of SetUserInteractionLimit", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SmimeSignature", + "description": "Represents an S/MIME signature on a Commit or Tag.", + "fields": [ + { + "name": "email", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isValid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "payload", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signature", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "wasSignedByGitHub", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "GitSignature", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SocialAccount", + "description": "Social media profile associated with a user.", + "fields": [ + { + "name": "displayName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "provider", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SocialAccountProvider", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SocialAccountConnection", + "description": "The connection type for SocialAccount.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SocialAccountEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SocialAccount", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SocialAccountEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "SocialAccount", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SocialAccountProvider", + "description": "Software or company that hosts social media accounts.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "GENERIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "FACEBOOK", "isDeprecated": False, "deprecationReason": None}, + {"name": "HOMETOWN", "isDeprecated": False, "deprecationReason": None}, + {"name": "INSTAGRAM", "isDeprecated": False, "deprecationReason": None}, + {"name": "LINKEDIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "MASTODON", "isDeprecated": False, "deprecationReason": None}, + {"name": "REDDIT", "isDeprecated": False, "deprecationReason": None}, + {"name": "TWITCH", "isDeprecated": False, "deprecationReason": None}, + {"name": "TWITTER", "isDeprecated": False, "deprecationReason": None}, + {"name": "YOUTUBE", "isDeprecated": False, "deprecationReason": None}, + {"name": "NPM", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "Sponsor", + "description": "Entities that can sponsor others via GitHub Sponsors", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValue", + "description": "A GitHub account and the total amount in USD they've paid for sponsorships to a particular maintainer. Does not include payments made via Patreon.", + "fields": [ + { + "name": "amountInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "formattedAmount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueConnection", + "description": "The connection type for SponsorAndLifetimeValue.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorAndLifetimeValueEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorAndLifetimeValue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorAndLifetimeValue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorAndLifetimeValueOrder", + "description": "Ordering options for connections to get sponsor entities and associated USD amounts for GitHub Sponsors.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorAndLifetimeValueOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorAndLifetimeValueOrderField", + "description": "Properties by which sponsor and lifetime value connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "SPONSOR_LOGIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "SPONSOR_RELEVANCE", "isDeprecated": False, "deprecationReason": None}, + {"name": "LIFETIME_VALUE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorConnection", + "description": "A list of users and organizations sponsoring someone via GitHub Sponsors.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "Sponsor", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorEdge", + "description": "Represents a user or organization who is sponsoring someone in GitHub Sponsors.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "Sponsor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorOrder", + "description": "Ordering options for connections to get sponsor entities for GitHub Sponsors.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorOrderField", + "description": "Properties by which sponsor connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "RELEVANCE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Sponsorable", + "description": "Entities that can sponsor or be sponsored through GitHub Sponsors.", + "fields": [ + { + "name": "estimatedNextSponsorsPayoutInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasSponsorsListing", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSponsoredBy", + "args": [ + { + "name": "accountLogin", + "description": "The target account's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSponsoringViewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lifetimeReceivedSponsorshipValues", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for results returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorAndLifetimeValueOrder", + "ofType": None, + }, + "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "monthlyEstimatedSponsorsIncomeInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsoring", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the users and organizations returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, + "defaultValue": "{field: RELEVANCE, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsors", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "tierId", + "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsors returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, + "defaultValue": "{field: RELEVANCE, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsActivities", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "period", + "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", + "type": {"kind": "ENUM", "name": "SponsorsActivityPeriod", "ofType": None}, + "defaultValue": "MONTH", + }, + { + "name": "since", + "description": "Filter activities to those that occurred on or after this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "until", + "description": "Filter activities to those that occurred before this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for activity returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorsActivityOrder", "ofType": None}, + "defaultValue": "{field: TIMESTAMP, direction: DESC}", + }, + { + "name": "actions", + "description": "Filter activities to only the specified actions.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "ofType": None, + }, + }, + }, + "defaultValue": "[]", + }, + { + "name": "includeAsSponsor", + "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "includePrivate", + "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsActivityConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsListing", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipForViewerAsSponsor", + "args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + } + ], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipForViewerAsSponsorable", + "args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + } + ], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipNewsletters", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorship updates returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipNewsletterOrder", + "ofType": None, + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletterConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipsAsMaintainer", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "includePrivate", + "description": "Whether or not to include private sponsorships in the result set", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipsAsSponsor", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "maintainerLogins", + "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalSponsorshipAmountAsSponsorInCents", + "args": [ + { + "name": "since", + "description": "Filter payments to those that occurred on or after this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "until", + "description": "Filter payments to those that occurred before this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogins", + "description": "Filter payments to those made to the users or organizations with the specified usernames.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + ], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSponsor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerIsSponsoring", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "UNION", + "name": "SponsorableItem", + "description": "Entities that can be sponsored via GitHub Sponsors", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "SponsorableItemConnection", + "description": "The connection type for SponsorableItem.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorableItemEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "SponsorableItem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorableItemEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "SponsorableItem", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorableOrder", + "description": "Ordering options for connections to get sponsorable entities for GitHub Sponsors.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorableOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorableOrderField", + "description": "Properties by which sponsorable connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsActivity", + "description": "An event related to sponsorship activity.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorsActivityAction", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "currentPrivacyLevel", + "args": [], + "type": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "paymentSource", + "args": [], + "type": {"kind": "ENUM", "name": "SponsorshipPaymentSource", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "previousSponsorsTier", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsor", + "args": [], + "type": {"kind": "UNION", "name": "Sponsor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsTier", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "timestamp", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viaBulkSponsorship", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "description": "The possible actions that GitHub Sponsors activities can represent.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NEW_SPONSORSHIP", "isDeprecated": False, "deprecationReason": None}, + {"name": "CANCELLED_SPONSORSHIP", "isDeprecated": False, "deprecationReason": None}, + {"name": "TIER_CHANGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "REFUND", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING_CHANGE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SPONSOR_MATCH_DISABLED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsActivityConnection", + "description": "The connection type for SponsorsActivity.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsActivityEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsActivity", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsActivityEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsActivity", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorsActivityOrder", + "description": "Ordering options for GitHub Sponsors activity connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorsActivityOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorsActivityOrderField", + "description": "Properties by which GitHub Sponsors activity connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "TIMESTAMP", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorsActivityPeriod", + "description": "The possible time periods for which Sponsors activities can be requested.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DAY", "isDeprecated": False, "deprecationReason": None}, + {"name": "WEEK", "isDeprecated": False, "deprecationReason": None}, + {"name": "MONTH", "isDeprecated": False, "deprecationReason": None}, + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorsCountryOrRegionCode", + "description": "Represents countries or regions for billing and residence for a GitHub Sponsors profile.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "AF", "isDeprecated": False, "deprecationReason": None}, + {"name": "AX", "isDeprecated": False, "deprecationReason": None}, + {"name": "AL", "isDeprecated": False, "deprecationReason": None}, + {"name": "DZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "AS", "isDeprecated": False, "deprecationReason": None}, + {"name": "AD", "isDeprecated": False, "deprecationReason": None}, + {"name": "AO", "isDeprecated": False, "deprecationReason": None}, + {"name": "AI", "isDeprecated": False, "deprecationReason": None}, + {"name": "AQ", "isDeprecated": False, "deprecationReason": None}, + {"name": "AG", "isDeprecated": False, "deprecationReason": None}, + {"name": "AR", "isDeprecated": False, "deprecationReason": None}, + {"name": "AM", "isDeprecated": False, "deprecationReason": None}, + {"name": "AW", "isDeprecated": False, "deprecationReason": None}, + {"name": "AU", "isDeprecated": False, "deprecationReason": None}, + {"name": "AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "AZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "BS", "isDeprecated": False, "deprecationReason": None}, + {"name": "BH", "isDeprecated": False, "deprecationReason": None}, + {"name": "BD", "isDeprecated": False, "deprecationReason": None}, + {"name": "BB", "isDeprecated": False, "deprecationReason": None}, + {"name": "BY", "isDeprecated": False, "deprecationReason": None}, + {"name": "BE", "isDeprecated": False, "deprecationReason": None}, + {"name": "BZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "BJ", "isDeprecated": False, "deprecationReason": None}, + {"name": "BM", "isDeprecated": False, "deprecationReason": None}, + {"name": "BT", "isDeprecated": False, "deprecationReason": None}, + {"name": "BO", "isDeprecated": False, "deprecationReason": None}, + {"name": "BQ", "isDeprecated": False, "deprecationReason": None}, + {"name": "BA", "isDeprecated": False, "deprecationReason": None}, + {"name": "BW", "isDeprecated": False, "deprecationReason": None}, + {"name": "BV", "isDeprecated": False, "deprecationReason": None}, + {"name": "BR", "isDeprecated": False, "deprecationReason": None}, + {"name": "IO", "isDeprecated": False, "deprecationReason": None}, + {"name": "BN", "isDeprecated": False, "deprecationReason": None}, + {"name": "BG", "isDeprecated": False, "deprecationReason": None}, + {"name": "BF", "isDeprecated": False, "deprecationReason": None}, + {"name": "BI", "isDeprecated": False, "deprecationReason": None}, + {"name": "KH", "isDeprecated": False, "deprecationReason": None}, + {"name": "CM", "isDeprecated": False, "deprecationReason": None}, + {"name": "CA", "isDeprecated": False, "deprecationReason": None}, + {"name": "CV", "isDeprecated": False, "deprecationReason": None}, + {"name": "KY", "isDeprecated": False, "deprecationReason": None}, + {"name": "CF", "isDeprecated": False, "deprecationReason": None}, + {"name": "TD", "isDeprecated": False, "deprecationReason": None}, + {"name": "CL", "isDeprecated": False, "deprecationReason": None}, + {"name": "CN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CX", "isDeprecated": False, "deprecationReason": None}, + {"name": "CC", "isDeprecated": False, "deprecationReason": None}, + {"name": "CO", "isDeprecated": False, "deprecationReason": None}, + {"name": "KM", "isDeprecated": False, "deprecationReason": None}, + {"name": "CG", "isDeprecated": False, "deprecationReason": None}, + {"name": "CD", "isDeprecated": False, "deprecationReason": None}, + {"name": "CK", "isDeprecated": False, "deprecationReason": None}, + {"name": "CR", "isDeprecated": False, "deprecationReason": None}, + {"name": "CI", "isDeprecated": False, "deprecationReason": None}, + {"name": "HR", "isDeprecated": False, "deprecationReason": None}, + {"name": "CW", "isDeprecated": False, "deprecationReason": None}, + {"name": "CY", "isDeprecated": False, "deprecationReason": None}, + {"name": "CZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "DK", "isDeprecated": False, "deprecationReason": None}, + {"name": "DJ", "isDeprecated": False, "deprecationReason": None}, + {"name": "DM", "isDeprecated": False, "deprecationReason": None}, + {"name": "DO", "isDeprecated": False, "deprecationReason": None}, + {"name": "EC", "isDeprecated": False, "deprecationReason": None}, + {"name": "EG", "isDeprecated": False, "deprecationReason": None}, + {"name": "SV", "isDeprecated": False, "deprecationReason": None}, + {"name": "GQ", "isDeprecated": False, "deprecationReason": None}, + {"name": "ER", "isDeprecated": False, "deprecationReason": None}, + {"name": "EE", "isDeprecated": False, "deprecationReason": None}, + {"name": "ET", "isDeprecated": False, "deprecationReason": None}, + {"name": "FK", "isDeprecated": False, "deprecationReason": None}, + {"name": "FO", "isDeprecated": False, "deprecationReason": None}, + {"name": "FJ", "isDeprecated": False, "deprecationReason": None}, + {"name": "FI", "isDeprecated": False, "deprecationReason": None}, + {"name": "FR", "isDeprecated": False, "deprecationReason": None}, + {"name": "GF", "isDeprecated": False, "deprecationReason": None}, + {"name": "PF", "isDeprecated": False, "deprecationReason": None}, + {"name": "TF", "isDeprecated": False, "deprecationReason": None}, + {"name": "GA", "isDeprecated": False, "deprecationReason": None}, + {"name": "GM", "isDeprecated": False, "deprecationReason": None}, + {"name": "GE", "isDeprecated": False, "deprecationReason": None}, + {"name": "DE", "isDeprecated": False, "deprecationReason": None}, + {"name": "GH", "isDeprecated": False, "deprecationReason": None}, + {"name": "GI", "isDeprecated": False, "deprecationReason": None}, + {"name": "GR", "isDeprecated": False, "deprecationReason": None}, + {"name": "GL", "isDeprecated": False, "deprecationReason": None}, + {"name": "GD", "isDeprecated": False, "deprecationReason": None}, + {"name": "GP", "isDeprecated": False, "deprecationReason": None}, + {"name": "GU", "isDeprecated": False, "deprecationReason": None}, + {"name": "GT", "isDeprecated": False, "deprecationReason": None}, + {"name": "GG", "isDeprecated": False, "deprecationReason": None}, + {"name": "GN", "isDeprecated": False, "deprecationReason": None}, + {"name": "GW", "isDeprecated": False, "deprecationReason": None}, + {"name": "GY", "isDeprecated": False, "deprecationReason": None}, + {"name": "HT", "isDeprecated": False, "deprecationReason": None}, + {"name": "HM", "isDeprecated": False, "deprecationReason": None}, + {"name": "HN", "isDeprecated": False, "deprecationReason": None}, + {"name": "HK", "isDeprecated": False, "deprecationReason": None}, + {"name": "HU", "isDeprecated": False, "deprecationReason": None}, + {"name": "IS", "isDeprecated": False, "deprecationReason": None}, + {"name": "IN", "isDeprecated": False, "deprecationReason": None}, + {"name": "ID", "isDeprecated": False, "deprecationReason": None}, + {"name": "IR", "isDeprecated": False, "deprecationReason": None}, + {"name": "IQ", "isDeprecated": False, "deprecationReason": None}, + {"name": "IE", "isDeprecated": False, "deprecationReason": None}, + {"name": "IM", "isDeprecated": False, "deprecationReason": None}, + {"name": "IL", "isDeprecated": False, "deprecationReason": None}, + {"name": "IT", "isDeprecated": False, "deprecationReason": None}, + {"name": "JM", "isDeprecated": False, "deprecationReason": None}, + {"name": "JP", "isDeprecated": False, "deprecationReason": None}, + {"name": "JE", "isDeprecated": False, "deprecationReason": None}, + {"name": "JO", "isDeprecated": False, "deprecationReason": None}, + {"name": "KZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "KE", "isDeprecated": False, "deprecationReason": None}, + {"name": "KI", "isDeprecated": False, "deprecationReason": None}, + {"name": "KR", "isDeprecated": False, "deprecationReason": None}, + {"name": "KW", "isDeprecated": False, "deprecationReason": None}, + {"name": "KG", "isDeprecated": False, "deprecationReason": None}, + {"name": "LA", "isDeprecated": False, "deprecationReason": None}, + {"name": "LV", "isDeprecated": False, "deprecationReason": None}, + {"name": "LB", "isDeprecated": False, "deprecationReason": None}, + {"name": "LS", "isDeprecated": False, "deprecationReason": None}, + {"name": "LR", "isDeprecated": False, "deprecationReason": None}, + {"name": "LY", "isDeprecated": False, "deprecationReason": None}, + {"name": "LI", "isDeprecated": False, "deprecationReason": None}, + {"name": "LT", "isDeprecated": False, "deprecationReason": None}, + {"name": "LU", "isDeprecated": False, "deprecationReason": None}, + {"name": "MO", "isDeprecated": False, "deprecationReason": None}, + {"name": "MK", "isDeprecated": False, "deprecationReason": None}, + {"name": "MG", "isDeprecated": False, "deprecationReason": None}, + {"name": "MW", "isDeprecated": False, "deprecationReason": None}, + {"name": "MY", "isDeprecated": False, "deprecationReason": None}, + {"name": "MV", "isDeprecated": False, "deprecationReason": None}, + {"name": "ML", "isDeprecated": False, "deprecationReason": None}, + {"name": "MT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MH", "isDeprecated": False, "deprecationReason": None}, + {"name": "MQ", "isDeprecated": False, "deprecationReason": None}, + {"name": "MR", "isDeprecated": False, "deprecationReason": None}, + {"name": "MU", "isDeprecated": False, "deprecationReason": None}, + {"name": "YT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MX", "isDeprecated": False, "deprecationReason": None}, + {"name": "FM", "isDeprecated": False, "deprecationReason": None}, + {"name": "MD", "isDeprecated": False, "deprecationReason": None}, + {"name": "MC", "isDeprecated": False, "deprecationReason": None}, + {"name": "MN", "isDeprecated": False, "deprecationReason": None}, + {"name": "ME", "isDeprecated": False, "deprecationReason": None}, + {"name": "MS", "isDeprecated": False, "deprecationReason": None}, + {"name": "MA", "isDeprecated": False, "deprecationReason": None}, + {"name": "MZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "MM", "isDeprecated": False, "deprecationReason": None}, + {"name": "NA", "isDeprecated": False, "deprecationReason": None}, + {"name": "NR", "isDeprecated": False, "deprecationReason": None}, + {"name": "NP", "isDeprecated": False, "deprecationReason": None}, + {"name": "NL", "isDeprecated": False, "deprecationReason": None}, + {"name": "NC", "isDeprecated": False, "deprecationReason": None}, + {"name": "NZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "NI", "isDeprecated": False, "deprecationReason": None}, + {"name": "NE", "isDeprecated": False, "deprecationReason": None}, + {"name": "NG", "isDeprecated": False, "deprecationReason": None}, + {"name": "NU", "isDeprecated": False, "deprecationReason": None}, + {"name": "NF", "isDeprecated": False, "deprecationReason": None}, + {"name": "MP", "isDeprecated": False, "deprecationReason": None}, + {"name": "NO", "isDeprecated": False, "deprecationReason": None}, + {"name": "OM", "isDeprecated": False, "deprecationReason": None}, + {"name": "PK", "isDeprecated": False, "deprecationReason": None}, + {"name": "PW", "isDeprecated": False, "deprecationReason": None}, + {"name": "PS", "isDeprecated": False, "deprecationReason": None}, + {"name": "PA", "isDeprecated": False, "deprecationReason": None}, + {"name": "PG", "isDeprecated": False, "deprecationReason": None}, + {"name": "PY", "isDeprecated": False, "deprecationReason": None}, + {"name": "PE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PH", "isDeprecated": False, "deprecationReason": None}, + {"name": "PN", "isDeprecated": False, "deprecationReason": None}, + {"name": "PL", "isDeprecated": False, "deprecationReason": None}, + {"name": "PT", "isDeprecated": False, "deprecationReason": None}, + {"name": "PR", "isDeprecated": False, "deprecationReason": None}, + {"name": "QA", "isDeprecated": False, "deprecationReason": None}, + {"name": "RE", "isDeprecated": False, "deprecationReason": None}, + {"name": "RO", "isDeprecated": False, "deprecationReason": None}, + {"name": "RU", "isDeprecated": False, "deprecationReason": None}, + {"name": "RW", "isDeprecated": False, "deprecationReason": None}, + {"name": "BL", "isDeprecated": False, "deprecationReason": None}, + {"name": "SH", "isDeprecated": False, "deprecationReason": None}, + {"name": "KN", "isDeprecated": False, "deprecationReason": None}, + {"name": "LC", "isDeprecated": False, "deprecationReason": None}, + {"name": "MF", "isDeprecated": False, "deprecationReason": None}, + {"name": "PM", "isDeprecated": False, "deprecationReason": None}, + {"name": "VC", "isDeprecated": False, "deprecationReason": None}, + {"name": "WS", "isDeprecated": False, "deprecationReason": None}, + {"name": "SM", "isDeprecated": False, "deprecationReason": None}, + {"name": "ST", "isDeprecated": False, "deprecationReason": None}, + {"name": "SA", "isDeprecated": False, "deprecationReason": None}, + {"name": "SN", "isDeprecated": False, "deprecationReason": None}, + {"name": "RS", "isDeprecated": False, "deprecationReason": None}, + {"name": "SC", "isDeprecated": False, "deprecationReason": None}, + {"name": "SL", "isDeprecated": False, "deprecationReason": None}, + {"name": "SG", "isDeprecated": False, "deprecationReason": None}, + {"name": "SX", "isDeprecated": False, "deprecationReason": None}, + {"name": "SK", "isDeprecated": False, "deprecationReason": None}, + {"name": "SI", "isDeprecated": False, "deprecationReason": None}, + {"name": "SB", "isDeprecated": False, "deprecationReason": None}, + {"name": "SO", "isDeprecated": False, "deprecationReason": None}, + {"name": "ZA", "isDeprecated": False, "deprecationReason": None}, + {"name": "GS", "isDeprecated": False, "deprecationReason": None}, + {"name": "SS", "isDeprecated": False, "deprecationReason": None}, + {"name": "ES", "isDeprecated": False, "deprecationReason": None}, + {"name": "LK", "isDeprecated": False, "deprecationReason": None}, + {"name": "SD", "isDeprecated": False, "deprecationReason": None}, + {"name": "SR", "isDeprecated": False, "deprecationReason": None}, + {"name": "SJ", "isDeprecated": False, "deprecationReason": None}, + {"name": "SZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "SE", "isDeprecated": False, "deprecationReason": None}, + {"name": "CH", "isDeprecated": False, "deprecationReason": None}, + {"name": "TW", "isDeprecated": False, "deprecationReason": None}, + {"name": "TJ", "isDeprecated": False, "deprecationReason": None}, + {"name": "TZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "TH", "isDeprecated": False, "deprecationReason": None}, + {"name": "TL", "isDeprecated": False, "deprecationReason": None}, + {"name": "TG", "isDeprecated": False, "deprecationReason": None}, + {"name": "TK", "isDeprecated": False, "deprecationReason": None}, + {"name": "TO", "isDeprecated": False, "deprecationReason": None}, + {"name": "TT", "isDeprecated": False, "deprecationReason": None}, + {"name": "TN", "isDeprecated": False, "deprecationReason": None}, + {"name": "TR", "isDeprecated": False, "deprecationReason": None}, + {"name": "TM", "isDeprecated": False, "deprecationReason": None}, + {"name": "TC", "isDeprecated": False, "deprecationReason": None}, + {"name": "TV", "isDeprecated": False, "deprecationReason": None}, + {"name": "UG", "isDeprecated": False, "deprecationReason": None}, + {"name": "UA", "isDeprecated": False, "deprecationReason": None}, + {"name": "AE", "isDeprecated": False, "deprecationReason": None}, + {"name": "GB", "isDeprecated": False, "deprecationReason": None}, + {"name": "UM", "isDeprecated": False, "deprecationReason": None}, + {"name": "US", "isDeprecated": False, "deprecationReason": None}, + {"name": "UY", "isDeprecated": False, "deprecationReason": None}, + {"name": "UZ", "isDeprecated": False, "deprecationReason": None}, + {"name": "VU", "isDeprecated": False, "deprecationReason": None}, + {"name": "VA", "isDeprecated": False, "deprecationReason": None}, + {"name": "VE", "isDeprecated": False, "deprecationReason": None}, + {"name": "VN", "isDeprecated": False, "deprecationReason": None}, + {"name": "VG", "isDeprecated": False, "deprecationReason": None}, + {"name": "VI", "isDeprecated": False, "deprecationReason": None}, + {"name": "WF", "isDeprecated": False, "deprecationReason": None}, + {"name": "EH", "isDeprecated": False, "deprecationReason": None}, + {"name": "YE", "isDeprecated": False, "deprecationReason": None}, + {"name": "ZM", "isDeprecated": False, "deprecationReason": None}, + {"name": "ZW", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsGoal", + "description": "A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.", + "fields": [ + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "kind", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorsGoalKind", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "percentComplete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "targetValue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorsGoalKind", + "description": "The different kinds of goals a GitHub Sponsors member can have.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "TOTAL_SPONSORS_COUNT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MONTHLY_SPONSORSHIP_AMOUNT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsListing", + "description": "A GitHub Sponsors listing.", + "fields": [ + { + "name": "activeGoal", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsGoal", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "activeStripeConnectAccount", + "args": [], + "type": {"kind": "OBJECT", "name": "StripeConnectAccount", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "billingCountryOrRegion", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contactEmailAddress", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dashboardResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dashboardUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "featuredItems", + "args": [ + { + "name": "featureableTypes", + "description": "The types of featured items to return.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsListingFeaturedItemFeatureableType", + "ofType": None, + }, + }, + }, + "defaultValue": "[REPOSITORY, USER]", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorsListingFeaturedItem", + "ofType": None, + }, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fiscalHost", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDescription", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fullDescriptionHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPublic", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nextPayoutDate", + "args": [], + "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "residenceCountryOrRegion", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "shortDescription", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "slug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tiers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for Sponsors tiers returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorsTierOrder", "ofType": None}, + "defaultValue": "{field: MONTHLY_PRICE_IN_CENTS, direction: ASC}", + }, + { + "name": "includeUnpublished", + "description": "Whether to include tiers that aren't published. Only admins of the Sponsors listing can see draft tiers. Only admins of the Sponsors listing and viewers who are currently sponsoring on a retired tier can see those retired tiers. Defaults to including only published tiers, which are visible to anyone who can see the GitHub Sponsors profile.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": {"kind": "OBJECT", "name": "SponsorsTierConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "SponsorsListingFeatureableItem", + "description": "A record that can be featured on a GitHub Sponsors profile.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "SponsorsListingFeaturedItem", + "description": "A record that is promoted on a GitHub Sponsors profile.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "featureable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "SponsorsListingFeatureableItem", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "position", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsListing", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorsListingFeaturedItemFeatureableType", + "description": "The different kinds of records that can be featured on a GitHub Sponsors profile page.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, + {"name": "USER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsTier", + "description": "A GitHub Sponsors tier associated with a GitHub Sponsors listing.", + "fields": [ + { + "name": "adminInfo", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTierAdminInfo", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "closestLesserValueTier", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "descriptionHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCustomAmount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isOneTime", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "monthlyPriceInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "monthlyPriceInDollars", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsListing", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsTierAdminInfo", + "description": "SponsorsTier information only visible to users that can administer the associated Sponsors listing.", + "fields": [ + { + "name": "isDraft", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPublished", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isRetired", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorships", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "includePrivate", + "description": "Whether or not to return private sponsorships using this tier. Defaults to only returning public sponsorships on this tier.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsTierConnection", + "description": "The connection type for SponsorsTier.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsTierEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorsTierEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorsTierOrder", + "description": "Ordering options for Sponsors tiers connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorsTierOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorsTierOrderField", + "description": "Properties by which Sponsors tiers connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "MONTHLY_PRICE_IN_CENTS", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Sponsorship", + "description": "A sponsorship relationship between a sponsor and a maintainer", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isActive", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isOneTimePayment", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSponsorOptedIntoEmail", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "maintainer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "`Sponsorship.maintainer` will be removed. Use `Sponsorship.sponsorable` instead. Removal on 2020-04-01 UTC.", + }, + { + "name": "paymentSource", + "args": [], + "type": {"kind": "ENUM", "name": "SponsorshipPaymentSource", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "privacyLevel", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsor", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "`Sponsorship.sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead. Removal on 2020-10-01 UTC.", + }, + { + "name": "sponsorEntity", + "args": [], + "type": {"kind": "UNION", "name": "Sponsor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tier", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tierSelectedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorshipConnection", + "description": "A list of sponsorships either from the subject or received by the subject.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalRecurringMonthlyPriceInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalRecurringMonthlyPriceInDollars", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorshipEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorshipNewsletter", + "description": "An update sent to sponsors of a user or organization on GitHub Sponsors.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPublished", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorshipNewsletterConnection", + "description": "The connection type for SponsorshipNewsletter.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletterEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletter", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SponsorshipNewsletterEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorshipNewsletter", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorshipNewsletterOrder", + "description": "Ordering options for sponsorship newsletter connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorshipNewsletterOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorshipNewsletterOrderField", + "description": "Properties by which sponsorship update connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SponsorshipOrder", + "description": "Ordering options for sponsorship connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SponsorshipOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorshipOrderField", + "description": "Properties by which sponsorship connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorshipPaymentSource", + "description": "How payment was made for funding a GitHub Sponsors sponsorship.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "GITHUB", "isDeprecated": False, "deprecationReason": None}, + {"name": "PATREON", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SponsorshipPrivacy", + "description": "The privacy of a sponsorship", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, + {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SquashMergeCommitMessage", + "description": "The possible default commit messages for squash merges.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PR_BODY", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMIT_MESSAGES", "isDeprecated": False, "deprecationReason": None}, + {"name": "BLANK", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SquashMergeCommitTitle", + "description": "The possible default commit titles for squash merges.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "PR_TITLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "COMMIT_OR_PR_TITLE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SshSignature", + "description": "Represents an SSH signature on a Commit or Tag.", + "fields": [ + { + "name": "email", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isValid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "keyFingerprint", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "payload", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signature", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "wasSignedByGitHub", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "GitSignature", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "StarOrder", + "description": "Ways in which star connections can be ordered.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "StarOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "StarOrderField", + "description": "Properties by which star connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "STARRED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StargazerConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StargazerEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StargazerEdge", + "description": "Represents a user that's starred a repository.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "starredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Starrable", + "description": "Things that can be starred.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stargazerCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stargazers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StargazerConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasStarred", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Gist", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "Topic", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "StarredRepositoryConnection", + "description": "The connection type for Repository.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StarredRepositoryEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isOverLimit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StarredRepositoryEdge", + "description": "Represents a starred repository.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "starredAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "StartOrganizationMigrationInput", + "description": "Autogenerated input type of StartOrganizationMigration", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sourceOrgUrl", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "targetOrgName", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "targetEnterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "sourceAccessToken", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StartOrganizationMigrationPayload", + "description": "Autogenerated return type of StartOrganizationMigration", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "orgMigration", + "args": [], + "type": {"kind": "OBJECT", "name": "OrganizationMigration", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "StartRepositoryMigrationInput", + "description": "Autogenerated input type of StartRepositoryMigration", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "sourceRepositoryUrl", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryName", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "continueOnError", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "gitArchiveUrl", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "metadataArchiveUrl", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "accessToken", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "githubPat", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "skipReleases", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "targetRepoVisibility", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "lockSource", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StartRepositoryMigrationPayload", + "description": "Autogenerated return type of StartRepositoryMigration", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryMigration", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Status", + "description": "Represents a commit status.", + "fields": [ + { + "name": "combinedContexts", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusCheckRollupContextConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "context", + "args": [ + { + "name": "name", + "description": "The context name.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contexts", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "StatusState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StatusCheckConfiguration", + "description": "Required status check", + "fields": [ + { + "name": "context", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "integrationId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusCheckConfigurationInput", + "description": "Required status check", + "fields": None, + "inputFields": [ + { + "name": "context", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "integrationId", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StatusCheckRollup", + "description": "Represents the rollup for both the check runs and status for a commit.", + "fields": [ + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contexts", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "StatusCheckRollupContextConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "StatusState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "StatusCheckRollupContext", + "description": "Types that can be inside a StatusCheckRollup context.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, + {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "StatusCheckRollupContextConnection", + "description": "The connection type for StatusCheckRollupContext.", + "fields": [ + { + "name": "checkRunCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "checkRunCountsByState", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckRunStateCount", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StatusCheckRollupContextEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "StatusCheckRollupContext", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "statusContextCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "statusContextCountsByState", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StatusContextStateCount", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StatusCheckRollupContextEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "StatusCheckRollupContext", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StatusContext", + "description": "Represents an individual commit status context", + "fields": [ + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "40", + } + ], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commit", + "args": [], + "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "context", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "creator", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isRequired", + "args": [ + { + "name": "pullRequestId", + "description": "The id of the pull request this is required for", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestNumber", + "description": "The number of the pull request this is required for", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "StatusState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "targetUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "RequirableByPullRequest", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StatusContextStateCount", + "description": "Represents a count of the state of a status context.", + "fields": [ + { + "name": "count", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "StatusState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "StatusState", + "description": "The possible commit status states.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "EXPECTED", "isDeprecated": False, "deprecationReason": None}, + {"name": "ERROR", "isDeprecated": False, "deprecationReason": None}, + {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, + {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "String", + "description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "StripeConnectAccount", + "description": "A Stripe Connect account for receiving sponsorship funds from GitHub Sponsors.", + "fields": [ + { + "name": "accountId", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "billingCountryOrRegion", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "countryOrRegion", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isActive", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsListing", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stripeDashboardUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "SubmitPullRequestReviewInput", + "description": "Autogenerated input type of SubmitPullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "event", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestReviewEvent", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SubmitPullRequestReviewPayload", + "description": "Autogenerated return type of SubmitPullRequestReview", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReview", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Submodule", + "description": "A pointer to a repository at a specific revision embedded inside another repository.", + "fields": [ + { + "name": "branch", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "gitUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nameRaw", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pathRaw", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subprojectCommitOid", + "args": [], + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SubmoduleConnection", + "description": "The connection type for Submodule.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SubmoduleEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Submodule", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SubmoduleEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Submodule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Subscribable", + "description": "Entities that can be subscribed to for web and email notifications.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSubscribe", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerSubscription", + "args": [], + "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Commit", "ofType": None}, + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "Team", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + ], + }, + { + "kind": "INTERFACE", + "name": "SubscribableThread", + "description": "Entities that can be subscribed to for web and email notifications.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerThreadSubscriptionFormAction", + "args": [], + "type": {"kind": "ENUM", "name": "ThreadSubscriptionFormAction", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerThreadSubscriptionStatus", + "args": [], + "type": {"kind": "ENUM", "name": "ThreadSubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [{"kind": "OBJECT", "name": "Issue", "ofType": None}], + }, + { + "kind": "OBJECT", + "name": "SubscribedEvent", + "description": "Represents a 'subscribed' event on a given `Subscribable`.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subscribable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "SubscriptionState", + "description": "The possible states of a subscription.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "UNSUBSCRIBED", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIBED", "isDeprecated": False, "deprecationReason": None}, + {"name": "IGNORED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "SuggestedReviewer", + "description": "A suggestion to review a pull request based on a user's commit history and review comments.", + "fields": [ + { + "name": "isAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCommenter", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Tag", + "description": "Represents a Git tag.", + "fields": [ + { + "name": "abbreviatedOid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tagger", + "args": [], + "type": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "target", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TagNamePatternParameters", + "description": "Parameters to be used for the tag_name_pattern rule", + "fields": [ + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "negate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operator", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pattern", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "TagNamePatternParametersInput", + "description": "Parameters to be used for the tag_name_pattern rule", + "fields": None, + "inputFields": [ + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "negate", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "operator", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "pattern", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Team", + "description": "A team of users in an organization.", + "fields": [ + { + "name": "ancestors", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size in pixels of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "400", + } + ], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "childTeams", + "args": [ + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "TeamOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userLogins", + "description": "User logins to filter by", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "immediateOnly", + "description": "Whether to list immediate child teams or all descendant child teams.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "combinedSlug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [ + { + "name": "number", + "description": "The sequence number of the discussion to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isPinned", + "description": "If provided, filters discussions according to whether or not they are pinned.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "TeamDiscussionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamDiscussionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussionsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussionsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editTeamResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editTeamUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invitations", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "OrganizationInvitationConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "memberStatuses", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for user statuses returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "UserStatusOrder", "ofType": None}, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserStatusConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "members", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "The search string to look for.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "membership", + "description": "Filter by membership type", + "type": {"kind": "ENUM", "name": "TeamMembershipType", "ofType": None}, + "defaultValue": "ALL", + }, + { + "name": "role", + "description": "Filter by team member role", + "type": {"kind": "ENUM", "name": "TeamMemberRole", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "TeamMemberOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamMemberConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "membersUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "newTeamResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "newTeamUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "notificationSetting", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "TeamNotificationSetting", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeam", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "privacy", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "TeamPrivacy", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [ + { + "name": "number", + "description": "The Project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsV2", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, + "defaultValue": "{field: NUMBER, direction: DESC}", + }, + { + "name": "filterBy", + "description": "Filtering options for projects returned from this connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Filters", "ofType": None}, + "defaultValue": "{}", + }, + { + "name": "query", + "description": "The query to search projects by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositories", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "query", + "description": "The search string to look for. Repositories will be returned where the name contains your search string.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "TeamRepositoryOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamRepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoriesResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoriesUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewRequestDelegationAlgorithm", + "args": [], + "type": {"kind": "ENUM", "name": "TeamReviewAssignmentAlgorithm", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewRequestDelegationEnabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewRequestDelegationMemberCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reviewRequestDelegationNotifyTeam", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "slug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanAdminister", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSubscribe", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerSubscription", + "args": [], + "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "MemberStatusable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamAddMemberAuditEntry", + "description": "Audit log entry for a team.add_member event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isLdapMapped", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamAddRepositoryAuditEntry", + "description": "Audit log entry for a team.add_repository event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isLdapMapped", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "TeamAuditEntryData", + "description": "Metadata for an audit entry with action team.*", + "fields": [ + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "OrgRestoreMemberMembershipTeamAuditEntryData", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "TeamChangeParentTeamAuditEntry", + "description": "Audit log entry for a team.change_parent_team event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isLdapMapped", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeam", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeamName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeamNameWas", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeamResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeamUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeamWas", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeamWasResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "parentTeamWasUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamConnection", + "description": "The connection type for Team.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Team", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamDiscussion", + "description": "A team discussion.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyVersion", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "comments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamDiscussionCommentOrder", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "fromComment", + "description": "When provided, filters the connection such that results begin with the comment with this number.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamDiscussionCommentConnection", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "commentsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "commentsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPinned", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "isPrivate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "team", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Team", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "title", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanPin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSubscribe", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerSubscription", + "args": [], + "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionComment", + "description": "A comment on a team discussion.", + "fields": [ + { + "name": "author", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "authorAssociation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "body", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyText", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bodyVersion", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdViaEmail", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "includesCreatedEdit", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastEditedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "publishedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactionGroups", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "reactions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "content", + "description": "Allows filtering Reactions by emoji.", + "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Allows specifying the order in which reactions are returned.", + "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", + }, + { + "name": "userContentEdits", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanDelete", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReact", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerDidAuthor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Comment", "ofType": None}, + {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, + {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionCommentConnection", + "description": "The connection type for TeamDiscussionComment.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamDiscussionCommentEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionCommentEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamDiscussionCommentOrder", + "description": "Ways in which team discussion comment connections can be ordered.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "TeamDiscussionCommentOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamDiscussionCommentOrderField", + "description": "Properties by which team discussion comment connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionConnection", + "description": "The connection type for TeamDiscussion.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamDiscussionEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamDiscussionEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamDiscussionOrder", + "description": "Ways in which team discussion connections can be ordered.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "TeamDiscussionOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamDiscussionOrderField", + "description": "Properties by which team discussion connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamMemberConnection", + "description": "The connection type for User.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamMemberEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamMemberEdge", + "description": "Represents a user who is a member of a team.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "memberAccessResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "memberAccessUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "role", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "TeamMemberRole", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamMemberOrder", + "description": "Ordering options for team member connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "TeamMemberOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamMemberOrderField", + "description": "Properties by which team member connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamMemberRole", + "description": "The possible team member roles; either 'maintainer' or 'member'.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "MAINTAINER", "isDeprecated": False, "deprecationReason": None}, + {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamMembershipType", + "description": "Defines which types of team members are included in the returned list. Can be one of IMMEDIATE, CHILD_TEAM or ALL.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "IMMEDIATE", "isDeprecated": False, "deprecationReason": None}, + {"name": "CHILD_TEAM", "isDeprecated": False, "deprecationReason": None}, + {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamNotificationSetting", + "description": "The possible team notification values.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NOTIFICATIONS_ENABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "NOTIFICATIONS_DISABLED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamOrder", + "description": "Ways in which team connections can be ordered.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "TeamOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamOrderField", + "description": "Properties by which team connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "NAME", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamPrivacy", + "description": "The possible team privacy values.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "SECRET", "isDeprecated": False, "deprecationReason": None}, + {"name": "VISIBLE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamRemoveMemberAuditEntry", + "description": "Audit log entry for a team.remove_member event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isLdapMapped", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamRemoveRepositoryAuditEntry", + "description": "Audit log entry for a team.remove_repository event.", + "fields": [ + { + "name": "action", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actor", + "args": [], + "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorIp", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLocation", + "args": [], + "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "actorUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isLdapMapped", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "operationType", + "args": [], + "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userLogin", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userResourcePath", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "userUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, + {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamRepositoryConnection", + "description": "The connection type for Repository.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TeamRepositoryEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TeamRepositoryEdge", + "description": "Represents a team repository.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "permission", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamRepositoryOrder", + "description": "Ordering options for team repository connections", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "TeamRepositoryOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamRepositoryOrderField", + "description": "Properties by which team repository connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "PUSHED_AT", "isDeprecated": False, "deprecationReason": None}, + {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, + {"name": "PERMISSION", "isDeprecated": False, "deprecationReason": None}, + {"name": "STARGAZERS", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamReviewAssignmentAlgorithm", + "description": "The possible team review assignment algorithms", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ROUND_ROBIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "LOAD_BALANCE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TeamRole", + "description": "The role of a user on a team.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TextMatch", + "description": "A text match within a search result.", + "fields": [ + { + "name": "fragment", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "highlights", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TextMatchHighlight", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "property", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TextMatchHighlight", + "description": "Represents a single highlight in a search result match.", + "fields": [ + { + "name": "beginIndice", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "endIndice", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "text", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ThreadSubscriptionFormAction", + "description": "The possible states of a thread subscription form action", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIBE", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNSUBSCRIBE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "ThreadSubscriptionState", + "description": "The possible states of a subscription.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "UNAVAILABLE", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, + {"name": "IGNORING_LIST", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIBED_TO_THREAD_EVENTS", "isDeprecated": False, "deprecationReason": None}, + {"name": "IGNORING_THREAD", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIBED_TO_LIST", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIBED_TO_THREAD_TYPE", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIBED_TO_THREAD", "isDeprecated": False, "deprecationReason": None}, + {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Topic", + "description": "A topic aggregates entities that are related to a subject.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "relatedTopics", + "args": [ + { + "name": "first", + "description": "How many topics to return.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "3", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Topic", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositories", + "args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": "[OWNER, COLLABORATOR]", + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableOnly", + "description": "If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stargazerCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "stargazers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StargazerConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasStarred", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "TopicAuditEntryData", + "description": "Metadata for an audit entry with a topic.", + "fields": [ + { + "name": "topic", + "args": [], + "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topicName", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, + {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, + ], + }, + { + "kind": "ENUM", + "name": "TopicSuggestionDeclineReason", + "description": "Reason that the suggested topic is declined.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + { + "name": "NOT_RELEVANT", + "isDeprecated": True, + }, + { + "name": "TOO_SPECIFIC", + "isDeprecated": True, + }, + { + "name": "PERSONAL_PREFERENCE", + "isDeprecated": True, + }, + { + "name": "TOO_GENERAL", + "isDeprecated": True, + }, + ], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "TrackedIssueStates", + "description": "The possible states of a tracked issue.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "TransferEnterpriseOrganizationInput", + "description": "Autogenerated input type of TransferEnterpriseOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "destinationEnterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TransferEnterpriseOrganizationPayload", + "description": "Autogenerated return type of TransferEnterpriseOrganization", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "TransferIssueInput", + "description": "Autogenerated input type of TransferIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "issueId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "createLabelsIfMissing", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TransferIssuePayload", + "description": "Autogenerated return type of TransferIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TransferredEvent", + "description": "Represents a 'transferred' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fromRepository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "Tree", + "description": "Represents a Git tree.", + "fields": [ + { + "name": "abbreviatedOid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "entries", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "TreeEntry", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "TreeEntry", + "description": "Represents a Git tree entry.", + "fields": [ + { + "name": "extension", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isGenerated", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "language", + "args": [], + "type": {"kind": "OBJECT", "name": "Language", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lineCount", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mode", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nameRaw", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "object", + "args": [], + "type": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "oid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pathRaw", + "args": [], + "type": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "size", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "submodule", + "args": [], + "type": {"kind": "OBJECT", "name": "Submodule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "type", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "URI", + "description": "An RFC 3986, RFC 3987, and RFC 6570 (level 4) compliant URI string.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnarchiveProjectV2ItemInput", + "description": "Autogenerated input type of UnarchiveProjectV2Item", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "itemId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnarchiveProjectV2ItemPayload", + "description": "Autogenerated return type of UnarchiveProjectV2Item", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnarchiveRepositoryInput", + "description": "Autogenerated input type of UnarchiveRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnarchiveRepositoryPayload", + "description": "Autogenerated return type of UnarchiveRepository", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnassignedEvent", + "description": "Represents an 'unassigned' event on any assignable object.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assignable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "assignee", + "args": [], + "type": {"kind": "UNION", "name": "Assignee", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": True, + "deprecationReason": "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.", + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnfollowOrganizationInput", + "description": "Autogenerated input type of UnfollowOrganization", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnfollowOrganizationPayload", + "description": "Autogenerated return type of UnfollowOrganization", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnfollowUserInput", + "description": "Autogenerated input type of UnfollowUser", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnfollowUserPayload", + "description": "Autogenerated return type of UnfollowUser", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "UniformResourceLocatable", + "description": "Represents a type that can be retrieved by a URL.", + "fields": [ + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Bot", "ofType": None}, + {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, + {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Commit", "ofType": None}, + {"kind": "OBJECT", "name": "ConvertToDraftEvent", "ofType": None}, + {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Gist", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, + {"kind": "OBJECT", "name": "MergedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Milestone", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, + {"kind": "OBJECT", "name": "ReadyForReviewEvent", "ofType": None}, + {"kind": "OBJECT", "name": "Release", "ofType": None}, + {"kind": "OBJECT", "name": "Repository", "ofType": None}, + {"kind": "OBJECT", "name": "RepositoryTopic", "ofType": None}, + {"kind": "OBJECT", "name": "ReviewDismissedEvent", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "User", "ofType": None}, + {"kind": "OBJECT", "name": "Workflow", "ofType": None}, + {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, + {"kind": "OBJECT", "name": "WorkflowRunFile", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "UnknownSignature", + "description": "Represents an unknown signature on a Commit or Tag.", + "fields": [ + { + "name": "email", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isValid", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "payload", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signature", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "signer", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "wasSignedByGitHub", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "GitSignature", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnlabeledEvent", + "description": "Represents an 'unlabeled' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "label", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Label", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "labelable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnlinkProjectV2FromRepositoryInput", + "description": "Autogenerated input type of UnlinkProjectV2FromRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnlinkProjectV2FromRepositoryPayload", + "description": "Autogenerated return type of UnlinkProjectV2FromRepository", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnlinkProjectV2FromTeamInput", + "description": "Autogenerated input type of UnlinkProjectV2FromTeam", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "teamId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnlinkProjectV2FromTeamPayload", + "description": "Autogenerated return type of UnlinkProjectV2FromTeam", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnlinkRepositoryFromProjectInput", + "description": "Autogenerated input type of UnlinkRepositoryFromProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnlinkRepositoryFromProjectPayload", + "description": "Autogenerated return type of UnlinkRepositoryFromProject", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnlockLockableInput", + "description": "Autogenerated input type of UnlockLockable", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "lockableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnlockLockablePayload", + "description": "Autogenerated return type of UnlockLockable", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unlockedRecord", + "args": [], + "type": {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnlockedEvent", + "description": "Represents an 'unlocked' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lockable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnmarkDiscussionCommentAsAnswerInput", + "description": "Autogenerated input type of UnmarkDiscussionCommentAsAnswer", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnmarkDiscussionCommentAsAnswerPayload", + "description": "Autogenerated return type of UnmarkDiscussionCommentAsAnswer", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnmarkFileAsViewedInput", + "description": "Autogenerated input type of UnmarkFileAsViewed", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnmarkFileAsViewedPayload", + "description": "Autogenerated return type of UnmarkFileAsViewed", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnmarkIssueAsDuplicateInput", + "description": "Autogenerated input type of UnmarkIssueAsDuplicate", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "duplicateId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "canonicalId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnmarkIssueAsDuplicatePayload", + "description": "Autogenerated return type of UnmarkIssueAsDuplicate", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "duplicate", + "args": [], + "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnmarkProjectV2AsTemplateInput", + "description": "Autogenerated input type of UnmarkProjectV2AsTemplate", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnmarkProjectV2AsTemplatePayload", + "description": "Autogenerated return type of UnmarkProjectV2AsTemplate", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnmarkedAsDuplicateEvent", + "description": "Represents an 'unmarked_as_duplicate' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "canonical", + "args": [], + "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "duplicate", + "args": [], + "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCrossRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnminimizeCommentInput", + "description": "Autogenerated input type of UnminimizeComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "subjectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnminimizeCommentPayload", + "description": "Autogenerated return type of UnminimizeComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "unminimizedComment", + "args": [], + "type": {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnpinIssueInput", + "description": "Autogenerated input type of UnpinIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "issueId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnpinIssuePayload", + "description": "Autogenerated return type of UnpinIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnpinnedEvent", + "description": "Represents an 'unpinned' event on a given issue or pull request.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnresolveReviewThreadInput", + "description": "Autogenerated input type of UnresolveReviewThread", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "threadId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnresolveReviewThreadPayload", + "description": "Autogenerated return type of UnresolveReviewThread", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "thread", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UnsubscribeFromNotificationsInput", + "description": "Autogenerated input type of UnsubscribeFromNotifications", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnsubscribeFromNotificationsPayload", + "description": "Autogenerated return type of UnsubscribeFromNotifications", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "success", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UnsubscribedEvent", + "description": "Represents an 'unsubscribed' event on a given `Subscribable`.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subscribable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Updatable", + "description": "Entities that can be updated.", + "fields": [ + { + "name": "viewerCanUpdate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "GistComment", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "Project", "ofType": None}, + {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + ], + }, + { + "kind": "INTERFACE", + "name": "UpdatableComment", + "description": "Comments that can be updated.", + "fields": [ + { + "name": "viewerCannotUpdateReasons", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + {"kind": "OBJECT", "name": "GistComment", "ofType": None}, + {"kind": "OBJECT", "name": "Issue", "ofType": None}, + {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateBranchProtectionRuleInput", + "description": "Autogenerated input type of UpdateBranchProtectionRule", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "branchProtectionRuleId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "pattern", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresApprovingReviews", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiredApprovingReviewCount", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresCommitSignatures", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresLinearHistory", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "blocksCreations", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "allowsForcePushes", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "allowsDeletions", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isAdminEnforced", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresStatusChecks", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresStrictStatusChecks", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiresCodeOwnerReviews", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "dismissesStaleReviews", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "restrictsReviewDismissals", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "reviewDismissalActorIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "bypassPullRequestActorIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "bypassForcePushActorIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "restrictsPushes", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pushActorIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "requiredStatusCheckContexts", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "requiredStatusChecks", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequiredStatusCheckInput", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "requiresDeployments", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requiredDeploymentEnvironments", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "requiresConversationResolution", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "requireLastPushApproval", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "lockBranch", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "lockAllowsFetchAndMerge", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateBranchProtectionRulePayload", + "description": "Autogenerated return type of UpdateBranchProtectionRule", + "fields": [ + { + "name": "branchProtectionRule", + "args": [], + "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateCheckRunInput", + "description": "Autogenerated input type of UpdateCheckRun", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "checkRunId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "detailsUrl", + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "defaultValue": None, + }, + { + "name": "externalId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "status", + "type": {"kind": "ENUM", "name": "RequestableCheckStatusState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "startedAt", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "conclusion", + "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "completedAt", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "output", + "type": {"kind": "INPUT_OBJECT", "name": "CheckRunOutput", "ofType": None}, + "defaultValue": None, + }, + { + "name": "actions", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "CheckRunAction", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateCheckRunPayload", + "description": "Autogenerated return type of UpdateCheckRun", + "fields": [ + { + "name": "checkRun", + "args": [], + "type": {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateCheckSuitePreferencesInput", + "description": "Autogenerated input type of UpdateCheckSuitePreferences", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "autoTriggerPreferences", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CheckSuiteAutoTriggerPreference", + "ofType": None, + }, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateCheckSuitePreferencesPayload", + "description": "Autogenerated return type of UpdateCheckSuitePreferences", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateDiscussionCommentInput", + "description": "Autogenerated input type of UpdateDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "commentId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateDiscussionCommentPayload", + "description": "Autogenerated return type of UpdateDiscussionComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "comment", + "args": [], + "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateDiscussionInput", + "description": "Autogenerated input type of UpdateDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "discussionId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "categoryId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateDiscussionPayload", + "description": "Autogenerated return type of UpdateDiscussion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "discussion", + "args": [], + "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseAdministratorRoleInput", + "description": "Autogenerated input type of UpdateEnterpriseAdministratorRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "login", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "role", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseAdministratorRolePayload", + "description": "Autogenerated return type of UpdateEnterpriseAdministratorRole", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "policyValue", + "type": { + "kind": "ENUM", + "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", + "ofType": None, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseDefaultRepositoryPermissionSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseDefaultRepositoryPermissionSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "ENUM", + "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", + "ofType": None, + }, + "defaultValue": None, + }, + { + "name": "membersCanCreateRepositoriesPolicyEnabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "membersCanCreatePublicRepositories", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "membersCanCreatePrivateRepositories", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "membersCanCreateInternalRepositories", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanCreateRepositoriesSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanDeleteIssuesSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanMakePurchasesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseMembersCanMakePurchasesSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanMakePurchasesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanMakePurchasesSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseOrganizationProjectsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseOrganizationProjectsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseOrganizationProjectsSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseOwnerOrganizationRoleInput", + "description": "Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "organizationRole", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RoleInOrganization", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseOwnerOrganizationRolePayload", + "description": "Autogenerated return type of UpdateEnterpriseOwnerOrganizationRole", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseProfileInput", + "description": "Autogenerated input type of UpdateEnterpriseProfile", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "description", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "websiteUrl", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "location", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseProfilePayload", + "description": "Autogenerated return type of UpdateEnterpriseProfile", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseRepositoryProjectsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseRepositoryProjectsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseRepositoryProjectsSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseTeamDiscussionsSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "EnterpriseEnabledDisabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseTeamDiscussionsSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseTeamDiscussionsSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput", + "description": "Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enterpriseId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "EnterpriseEnabledSettingValue", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload", + "description": "Autogenerated return type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprise", + "args": [], + "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateEnvironmentInput", + "description": "Autogenerated input type of UpdateEnvironment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "environmentId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "waitTimer", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "reviewers", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "preventSelfReview", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateEnvironmentPayload", + "description": "Autogenerated return type of UpdateEnvironment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "environment", + "args": [], + "type": {"kind": "OBJECT", "name": "Environment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListEnabledSettingInput", + "description": "Autogenerated input type of UpdateIpAllowListEnabledSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IpAllowListEnabledSettingValue", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateIpAllowListEnabledSettingPayload", + "description": "Autogenerated return type of UpdateIpAllowListEnabledSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": {"kind": "UNION", "name": "IpAllowListOwner", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListEntryInput", + "description": "Autogenerated input type of UpdateIpAllowListEntry", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ipAllowListEntryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "allowListValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isActive", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateIpAllowListEntryPayload", + "description": "Autogenerated return type of UpdateIpAllowListEntry", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ipAllowListEntry", + "args": [], + "type": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIpAllowListForInstalledAppsEnabledSettingInput", + "description": "Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "IpAllowListForInstalledAppsEnabledSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateIpAllowListForInstalledAppsEnabledSettingPayload", + "description": "Autogenerated return type of UpdateIpAllowListForInstalledAppsEnabledSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": {"kind": "UNION", "name": "IpAllowListOwner", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIssueCommentInput", + "description": "Autogenerated input type of UpdateIssueComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateIssueCommentPayload", + "description": "Autogenerated return type of UpdateIssueComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issueComment", + "args": [], + "type": {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIssueInput", + "description": "Autogenerated input type of UpdateIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "assigneeIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "milestoneId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labelIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "state", + "type": {"kind": "ENUM", "name": "IssueState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateIssuePayload", + "description": "Autogenerated return type of UpdateIssue", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issue", + "args": [], + "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateLabelInput", + "description": "Autogenerated input type of UpdateLabel", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "color", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "description", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateLabelPayload", + "description": "Autogenerated return type of UpdateLabel", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "label", + "args": [], + "type": {"kind": "OBJECT", "name": "Label", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateNotificationRestrictionSettingInput", + "description": "Autogenerated input type of UpdateNotificationRestrictionSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownerId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "settingValue", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "NotificationRestrictionSettingValue", + "ofType": None, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateNotificationRestrictionSettingPayload", + "description": "Autogenerated return type of UpdateNotificationRestrictionSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": {"kind": "UNION", "name": "VerifiableDomainOwner", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "description": "Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "forkingEnabled", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload", + "description": "Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateOrganizationWebCommitSignoffSettingInput", + "description": "Autogenerated input type of UpdateOrganizationWebCommitSignoffSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "organizationId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "webCommitSignoffRequired", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateOrganizationWebCommitSignoffSettingPayload", + "description": "Autogenerated return type of UpdateOrganizationWebCommitSignoffSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateParameters", + "description": "Only allow users with bypass permission to update matching refs.", + "fields": [ + { + "name": "updateAllowsFetchAndMerge", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateParametersInput", + "description": "Only allow users with bypass permission to update matching refs.", + "fields": None, + "inputFields": [ + { + "name": "updateAllowsFetchAndMerge", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePatreonSponsorabilityInput", + "description": "Autogenerated input type of UpdatePatreonSponsorability", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enablePatreonSponsorships", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdatePatreonSponsorabilityPayload", + "description": "Autogenerated return type of UpdatePatreonSponsorability", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsListing", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectCardInput", + "description": "Autogenerated input type of UpdateProjectCard", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectCardId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "isArchived", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "note", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateProjectCardPayload", + "description": "Autogenerated return type of UpdateProjectCard", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectCard", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectColumnInput", + "description": "Autogenerated input type of UpdateProjectColumn", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectColumnId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateProjectColumnPayload", + "description": "Autogenerated return type of UpdateProjectColumn", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectColumn", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectInput", + "description": "Autogenerated input type of UpdateProject", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "state", + "type": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "public", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateProjectPayload", + "description": "Autogenerated return type of UpdateProject", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2CollaboratorsInput", + "description": "Autogenerated input type of UpdateProjectV2Collaborators", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "collaborators", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectV2Collaborator", + "ofType": None, + }, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2CollaboratorsPayload", + "description": "Autogenerated return type of UpdateProjectV2Collaborators", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "collaborators", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2ActorConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2DraftIssueInput", + "description": "Autogenerated input type of UpdateProjectV2DraftIssue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "draftIssueId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "assigneeIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2DraftIssuePayload", + "description": "Autogenerated return type of UpdateProjectV2DraftIssue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "draftIssue", + "args": [], + "type": {"kind": "OBJECT", "name": "DraftIssue", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2Input", + "description": "Autogenerated input type of UpdateProjectV2", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "shortDescription", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "readme", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "closed", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "public", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2ItemFieldValueInput", + "description": "Autogenerated input type of UpdateProjectV2ItemFieldValue", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "itemId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "fieldId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldValue", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2ItemFieldValuePayload", + "description": "Autogenerated return type of UpdateProjectV2ItemFieldValue", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2Item", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectV2ItemPositionInput", + "description": "Autogenerated input type of UpdateProjectV2ItemPosition", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "itemId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "afterId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2ItemPositionPayload", + "description": "Autogenerated return type of UpdateProjectV2ItemPosition", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "items", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateProjectV2Payload", + "description": "Autogenerated return type of UpdateProjectV2", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestBranchInput", + "description": "Autogenerated input type of UpdatePullRequestBranch", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "expectedHeadOid", + "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "updateMethod", + "type": {"kind": "ENUM", "name": "PullRequestBranchUpdateMethod", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdatePullRequestBranchPayload", + "description": "Autogenerated return type of UpdatePullRequestBranch", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestInput", + "description": "Autogenerated input type of UpdatePullRequest", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "baseRefName", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "state", + "type": {"kind": "ENUM", "name": "PullRequestUpdateState", "ofType": None}, + "defaultValue": None, + }, + { + "name": "maintainerCanModify", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "assigneeIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "milestoneId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labelIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "projectIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdatePullRequestPayload", + "description": "Autogenerated return type of UpdatePullRequest", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequest", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestReviewCommentInput", + "description": "Autogenerated input type of UpdatePullRequestReviewComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewCommentId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdatePullRequestReviewCommentPayload", + "description": "Autogenerated return type of UpdatePullRequestReviewComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReviewComment", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePullRequestReviewInput", + "description": "Autogenerated input type of UpdatePullRequestReview", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pullRequestReviewId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdatePullRequestReviewPayload", + "description": "Autogenerated return type of UpdatePullRequestReview", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequestReview", + "args": [], + "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRefInput", + "description": "Autogenerated input type of UpdateRef", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "refId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "oid", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "force", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateRefPayload", + "description": "Autogenerated return type of UpdateRef", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRefsInput", + "description": "Autogenerated input type of UpdateRefs", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "refUpdates", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "RefUpdate", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateRefsPayload", + "description": "Autogenerated return type of UpdateRefs", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryInput", + "description": "Autogenerated input type of UpdateRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "description", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "template", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "homepageUrl", + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasWikiEnabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasIssuesEnabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasProjectsEnabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasDiscussionsEnabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasSponsorshipsEnabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateRepositoryPayload", + "description": "Autogenerated return type of UpdateRepository", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryRulesetInput", + "description": "Autogenerated input type of UpdateRepositoryRuleset", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryRulesetId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "target", + "type": {"kind": "ENUM", "name": "RepositoryRulesetTarget", "ofType": None}, + "defaultValue": None, + }, + { + "name": "rules", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "RepositoryRuleInput", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "conditions", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryRuleConditionsInput", "ofType": None}, + "defaultValue": None, + }, + { + "name": "enforcement", + "type": {"kind": "ENUM", "name": "RuleEnforcement", "ofType": None}, + "defaultValue": None, + }, + { + "name": "bypassActors", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RepositoryRulesetBypassActorInput", + "ofType": None, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateRepositoryRulesetPayload", + "description": "Autogenerated return type of UpdateRepositoryRuleset", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ruleset", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateRepositoryWebCommitSignoffSettingInput", + "description": "Autogenerated input type of UpdateRepositoryWebCommitSignoffSetting", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "webCommitSignoffRequired", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateRepositoryWebCommitSignoffSettingPayload", + "description": "Autogenerated return type of UpdateRepositoryWebCommitSignoffSetting", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateSponsorshipPreferencesInput", + "description": "Autogenerated input type of UpdateSponsorshipPreferences", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableId", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogin", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "receiveEmails", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "privacyLevel", + "type": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, + "defaultValue": "PUBLIC", + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateSponsorshipPreferencesPayload", + "description": "Autogenerated return type of UpdateSponsorshipPreferences", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorship", + "args": [], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateSubscriptionInput", + "description": "Autogenerated input type of UpdateSubscription", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "subscribableId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "state", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateSubscriptionPayload", + "description": "Autogenerated return type of UpdateSubscription", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subscribable", + "args": [], + "type": {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamDiscussionCommentInput", + "description": "Autogenerated input type of UpdateTeamDiscussionComment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "body", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "bodyVersion", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateTeamDiscussionCommentPayload", + "description": "Autogenerated return type of UpdateTeamDiscussionComment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamDiscussionComment", + "args": [], + "type": {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamDiscussionInput", + "description": "Autogenerated input type of UpdateTeamDiscussion", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "title", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "body", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "bodyVersion", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "pinned", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateTeamDiscussionPayload", + "description": "Autogenerated return type of UpdateTeamDiscussion", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teamDiscussion", + "args": [], + "type": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamReviewAssignmentInput", + "description": "Autogenerated input type of UpdateTeamReviewAssignment", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "enabled", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "algorithm", + "type": {"kind": "ENUM", "name": "TeamReviewAssignmentAlgorithm", "ofType": None}, + "defaultValue": "ROUND_ROBIN", + }, + { + "name": "teamMemberCount", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": "1", + }, + { + "name": "notifyTeam", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "removeTeamRequest", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "includeChildTeamMembers", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "countMembersAlreadyRequested", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + { + "name": "excludedTeamMemberIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateTeamReviewAssignmentPayload", + "description": "Autogenerated return type of UpdateTeamReviewAssignment", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "team", + "args": [], + "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTeamsRepositoryInput", + "description": "Autogenerated input type of UpdateTeamsRepository", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "teamIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "permission", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateTeamsRepositoryPayload", + "description": "Autogenerated return type of UpdateTeamsRepository", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "teams", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Team", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateTopicsInput", + "description": "Autogenerated input type of UpdateTopics", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "topicNames", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateTopicsPayload", + "description": "Autogenerated return type of UpdateTopics", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "invalidTopicNames", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateUserListInput", + "description": "Autogenerated input type of UpdateUserList", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "listId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "name", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "description", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isPrivate", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateUserListPayload", + "description": "Autogenerated return type of UpdateUserList", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "list", + "args": [], + "type": {"kind": "OBJECT", "name": "UserList", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateUserListsForItemInput", + "description": "Autogenerated input type of UpdateUserListsForItem", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "itemId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "listIds", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + }, + "defaultValue": None, + }, + { + "name": "suggestedListIds", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UpdateUserListsForItemPayload", + "description": "Autogenerated return type of UpdateUserListsForItem", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "item", + "args": [], + "type": {"kind": "UNION", "name": "UserListItems", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lists", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserList", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "User", + "description": "A user is an individual's account on GitHub that owns repositories and can make new content.", + "fields": [ + { + "name": "anyPinnableItems", + "args": [ + { + "name": "type", + "description": "Filter to only a particular kind of pinnable item.", + "type": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "avatarUrl", + "args": [ + { + "name": "size", + "description": "The size of the resulting square image.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bio", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "bioHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "canReceiveOrganizationEmailsWhenNotificationsRestricted", + "args": [ + { + "name": "login", + "description": "The login of the organization to check.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "commitComments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "company", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "companyHTML", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "contributionsCollection", + "args": [ + { + "name": "organizationID", + "description": "The ID of the organization used to filter contributions.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "from", + "description": "Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "to", + "description": "Only contributions made before and up to (including) this time will be counted. If omitted, defaults to the current time or one year from the provided from argument.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ContributionsCollection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "email", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enterprises", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the User's enterprises.", + "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseOrder", "ofType": None}, + "defaultValue": "{field: NAME, direction: ASC}", + }, + { + "name": "membershipType", + "description": "Filter enterprises returned based on the user's membership type.", + "type": {"kind": "ENUM", "name": "EnterpriseMembershipType", "ofType": None}, + "defaultValue": "ALL", + }, + ], + "type": {"kind": "OBJECT", "name": "EnterpriseConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "estimatedNextSponsorsPayoutInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "followers", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "FollowerConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "following", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "FollowingConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "gist", + "args": [ + { + "name": "name", + "description": "The gist name to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Gist", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "gistComments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GistCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "gists", + "args": [ + { + "name": "privacy", + "description": "Filters Gists according to privacy.", + "type": {"kind": "ENUM", "name": "GistPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for gists returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "GistOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "GistConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasSponsorsListing", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hovercard", + "args": [ + { + "name": "primarySubjectId", + "description": "The ID of the subject to get the hovercard in the context of", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Hovercard", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "interactionAbility", + "args": [], + "type": {"kind": "OBJECT", "name": "RepositoryInteractionAbility", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isBountyHunter", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isCampusExpert", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDeveloperProgramMember", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isEmployee", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isFollowingViewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isGitHubStar", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isHireable", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSiteAdmin", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSponsoredBy", + "args": [ + { + "name": "accountLogin", + "description": "The target account's login.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isSponsoringViewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isViewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issueComments", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for issue comments returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueCommentOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "issues", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for issues returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the issues by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "filterBy", + "description": "Filtering options for issues returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueFilters", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "itemShowcase", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProfileItemShowcase", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lifetimeReceivedSponsorshipValues", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for results returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorAndLifetimeValueOrder", + "ofType": None, + }, + "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "OBJECT", + "name": "SponsorAndLifetimeValueConnection", + "ofType": None, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lists", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserListConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "location", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "login", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "monthlyEstimatedSponsorsIncomeInCents", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [ + { + "name": "login", + "description": "The login of the organization to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizationVerifiedDomainEmails", + "args": [ + { + "name": "login", + "description": "The login of the organization to match verified domains from.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organizations", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for the User's organizations.", + "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "packages", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "names", + "description": "Find packages by their names.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "repositoryId", + "description": "Find packages in a repository by ID.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "packageType", + "description": "Filter registry package by type.", + "type": {"kind": "ENUM", "name": "PackageType", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering of the returned packages.", + "type": {"kind": "INPUT_OBJECT", "name": "PackageOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PackageConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnableItems", + "args": [ + { + "name": "types", + "description": "Filter the types of pinnable items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedItems", + "args": [ + { + "name": "types", + "description": "Filter the types of pinned items that are returned.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pinnedItemsRemaining", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "project", + "args": [ + { + "name": "number", + "description": "The project number to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectV2", + "args": [ + { + "name": "number", + "description": "The project number.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + } + ], + "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projects", + "args": [ + { + "name": "orderBy", + "description": "Ordering options for projects returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "search", + "description": "Query to search projects by, currently only searching by name.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "states", + "description": "A list of states to filter the projects by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsResourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "projectsV2", + "args": [ + { + "name": "query", + "description": "A project to search for under the the owner.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "How to order the returned projects.", + "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, + "defaultValue": "{field: NUMBER, direction: DESC}", + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pronouns", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "publicKeys", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PublicKeyConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pullRequests", + "args": [ + { + "name": "states", + "description": "A list of states to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "labels", + "description": "A list of label names to filter the pull requests by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "headRefName", + "description": "The head ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "baseRefName", + "description": "The base ref name to filter the pull requests by.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for pull requests returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "recentProjects", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositories", + "args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "affiliations", + "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": "[OWNER, COLLABORATOR]", + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isArchived", + "description": "If non-null, filters repositories according to whether they are archived and not maintained", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isFork", + "description": "If non-null, filters repositories according to whether they are forks of another repository", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoriesContributedTo", + "args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy", + "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasIssues", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "includeUserRepositories", + "description": "If true, include user repositories", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "contributionTypes", + "description": "If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY]", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "RepositoryContributionType", + "ofType": None, + }, + }, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repository", + "args": [ + { + "name": "name", + "description": "Name of Repository to find.", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "followRenames", + "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryDiscussionComments", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "description": "Filter discussion comments to only those in a specific repository.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "onlyAnswers", + "description": "Filter discussion comments to only those that were marked as the answer", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryDiscussions", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for discussions returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "DiscussionOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + { + "name": "repositoryId", + "description": "Filter discussions to only those in a specific repository.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "answered", + "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "null", + }, + { + "name": "states", + "description": "A list of states to filter the discussions by.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "DiscussionState", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DiscussionConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "savedReplies", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "The field to order saved replies by.", + "type": {"kind": "INPUT_OBJECT", "name": "SavedReplyOrder", "ofType": None}, + "defaultValue": "{field: UPDATED_AT, direction: DESC}", + }, + ], + "type": {"kind": "OBJECT", "name": "SavedReplyConnection", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "socialAccounts", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SocialAccountConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsoring", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the users and organizations returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, + "defaultValue": "{field: RELEVANCE, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsors", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "tierId", + "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsors returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, + "defaultValue": "{field: RELEVANCE, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsActivities", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "period", + "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", + "type": {"kind": "ENUM", "name": "SponsorsActivityPeriod", "ofType": None}, + "defaultValue": "MONTH", + }, + { + "name": "since", + "description": "Filter activities to those that occurred on or after this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "until", + "description": "Filter activities to those that occurred before this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for activity returned from the connection.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorsActivityOrder", "ofType": None}, + "defaultValue": "{field: TIMESTAMP, direction: DESC}", + }, + { + "name": "actions", + "description": "Filter activities to only the specified actions.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "ENUM", + "name": "SponsorsActivityAction", + "ofType": None, + }, + }, + }, + "defaultValue": "[]", + }, + { + "name": "includeAsSponsor", + "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "includePrivate", + "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorsActivityConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorsListing", + "args": [], + "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipForViewerAsSponsor", + "args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + } + ], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipForViewerAsSponsorable", + "args": [ + { + "name": "activeOnly", + "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + } + ], + "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipNewsletters", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorship updates returned from the connection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SponsorshipNewsletterOrder", + "ofType": None, + }, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletterConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipsAsMaintainer", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "includePrivate", + "description": "Whether or not to include private sponsorships in the result set", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sponsorshipsAsSponsor", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", + "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "maintainerLogins", + "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + }, + { + "name": "activeOnly", + "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "true", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "starredRepositories", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "ownedByViewer", + "description": "Filters starred repositories to only return repositories owned by the viewer.", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Order for connection", + "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "StarredRepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "status", + "args": [], + "type": {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "suggestedListNames", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserListSuggestion", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "topRepositories", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "since", + "description": "How far back in time to fetch contributed repositories", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalSponsorshipAmountAsSponsorInCents", + "args": [ + { + "name": "since", + "description": "Filter payments to those that occurred on or after this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "until", + "description": "Filter payments to those that occurred before this time.", + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "defaultValue": None, + }, + { + "name": "sponsorableLogins", + "description": "Filter payments to those made to the users or organizations with the specified usernames.", + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": "[]", + }, + ], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "twitterUsername", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanChangePinnedItems", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanCreateProjects", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanFollow", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanSponsor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerIsFollowing", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerIsSponsoring", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "watching", + "args": [ + { + "name": "privacy", + "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", + "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, + "defaultValue": None, + }, + { + "name": "visibility", + "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", + "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for repositories returned from the connection", + "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, + "defaultValue": None, + }, + { + "name": "affiliations", + "description": "Affiliation options for repositories returned from the connection. If none specified, the results will include repositories for which the current viewer is an owner or collaborator, or member.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ownerAffiliations", + "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, + }, + "defaultValue": "[OWNER, COLLABORATOR]", + }, + { + "name": "isLocked", + "description": "If non-null, filters repositories according to whether they have been locked", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "hasIssuesEnabled", + "description": "If non-null, filters repositories according to whether they have issues enabled", + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": None, + }, + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "websiteUrl", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "PackageOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProfileOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, + {"kind": "INTERFACE", "name": "ProjectV2Recent", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryDiscussionAuthor", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryDiscussionCommentAuthor", "ofType": None}, + {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, + {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "UserBlockDuration", + "description": "The possible durations that a user can be blocked for.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ONE_DAY", "isDeprecated": False, "deprecationReason": None}, + {"name": "THREE_DAYS", "isDeprecated": False, "deprecationReason": None}, + {"name": "ONE_WEEK", "isDeprecated": False, "deprecationReason": None}, + {"name": "ONE_MONTH", "isDeprecated": False, "deprecationReason": None}, + {"name": "PERMANENT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserBlockedEvent", + "description": "Represents a 'user_blocked' event on a given user.", + "fields": [ + { + "name": "actor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "blockDuration", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "UserBlockDuration", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subject", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserConnection", + "description": "A list of users.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserContentEdit", + "description": "An edit on user content", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletedAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deletedBy", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "diff", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "editor", + "args": [], + "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserContentEditConnection", + "description": "A list of edits to content.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserContentEditEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserContentEdit", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserContentEditEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "UserContentEdit", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserEdge", + "description": "Represents a user.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "User", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserEmailMetadata", + "description": "Email attributes from External Identity", + "fields": [ + { + "name": "primary", + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "type", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "value", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserList", + "description": "A user-curated list of repositories", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isPrivate", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "items", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserListItemsConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "lastAddedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "slug", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserListConnection", + "description": "The connection type for UserList.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserListEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserList", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserListEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "UserList", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "UserListItems", + "description": "Types that can be added to a user list.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [{"kind": "OBJECT", "name": "Repository", "ofType": None}], + }, + { + "kind": "OBJECT", + "name": "UserListItemsConnection", + "description": "The connection type for UserListItems.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserListItemsEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "UNION", "name": "UserListItems", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserListItemsEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "UNION", "name": "UserListItems", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserListSuggestion", + "description": "Represents a suggested user list.", + "fields": [ + { + "name": "id", + "args": [], + "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserStatus", + "description": "The user's description of what they're currently doing.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "emoji", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "emojiHTML", + "args": [], + "type": {"kind": "SCALAR", "name": "HTML", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "expiresAt", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "indicatesLimitedAvailability", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "message", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "organization", + "args": [], + "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "user", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserStatusConnection", + "description": "The connection type for UserStatus.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserStatusEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "UserStatusEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "UserStatusOrder", + "description": "Ordering options for user status connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "UserStatusOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "UserStatusOrderField", + "description": "Properties by which user status connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "VerifiableDomain", + "description": "A domain that can be verified or approved for an organization or an enterprise.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "dnsHostName", + "args": [], + "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "domain", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasFoundHostName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "hasFoundVerificationToken", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isApproved", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isRequiredForPolicyEnforcement", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isVerified", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "owner", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "UNION", "name": "VerifiableDomainOwner", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "punycodeEncodedDomain", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "tokenExpirationTime", + "args": [], + "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "verificationToken", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "VerifiableDomainConnection", + "description": "The connection type for VerifiableDomain.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "VerifiableDomainEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "VerifiableDomainEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "VerifiableDomainOrder", + "description": "Ordering options for verifiable domain connections.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "VerifiableDomainOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "VerifiableDomainOrderField", + "description": "Properties by which verifiable domain connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "DOMAIN", "isDeprecated": False, "deprecationReason": None}, + {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "UNION", + "name": "VerifiableDomainOwner", + "description": "Types that can own a verifiable domain.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, + {"kind": "OBJECT", "name": "Organization", "ofType": None}, + ], + }, + { + "kind": "INPUT_OBJECT", + "name": "VerifyVerifiableDomainInput", + "description": "Autogenerated input type of VerifyVerifiableDomain", + "fields": None, + "inputFields": [ + { + "name": "clientMutationId", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "VerifyVerifiableDomainPayload", + "description": "Autogenerated return type of VerifyVerifiableDomain", + "fields": [ + { + "name": "clientMutationId", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "domain", + "args": [], + "type": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "ViewerHovercardContext", + "description": "A hovercard context with a message describing how the viewer is related.", + "fields": [ + { + "name": "message", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "octicon", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewer", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INTERFACE", + "name": "Votable", + "description": "A subject that may be upvoted.", + "fields": [ + { + "name": "upvoteCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanUpvote", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerHasUpvoted", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": [ + {"kind": "OBJECT", "name": "Discussion", "ofType": None}, + {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, + ], + }, + { + "kind": "OBJECT", + "name": "Workflow", + "description": "A workflow contains meta information about an Actions workflow file.", + "fields": [ + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "runs", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "orderBy", + "description": "Ordering options for the connection", + "type": {"kind": "INPUT_OBJECT", "name": "WorkflowRunOrder", "ofType": None}, + "defaultValue": "{field: CREATED_AT, direction: DESC}", + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "WorkflowRunConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "state", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "WorkflowState", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "WorkflowFileReference", + "description": "A workflow that must run for this rule to pass", + "fields": [ + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ref", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryId", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "sha", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowFileReferenceInput", + "description": "A workflow that must run for this rule to pass", + "fields": None, + "inputFields": [ + { + "name": "path", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "ref", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "repositoryId", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "sha", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "WorkflowRun", + "description": "A workflow run.", + "fields": [ + { + "name": "checkSuite", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "createdAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "databaseId", + "args": [], + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deploymentReviews", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentReviewConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "event", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "file", + "args": [], + "type": {"kind": "OBJECT", "name": "WorkflowRunFile", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pendingDeploymentRequests", + "args": [ + { + "name": "after", + "description": "Returns the elements in the list that come after the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "before", + "description": "Returns the elements in the list that come before the specified cursor.", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "defaultValue": None, + }, + { + "name": "first", + "description": "Returns the first _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + { + "name": "last", + "description": "Returns the last _n_ elements from the list.", + "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, + "defaultValue": None, + }, + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "DeploymentRequestConnection", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "runNumber", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "updatedAt", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "workflow", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "Workflow", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "WorkflowRunConnection", + "description": "The connection type for WorkflowRun.", + "fields": [ + { + "name": "edges", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "WorkflowRunEdge", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "nodes", + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "pageInfo", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "totalCount", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "WorkflowRunEdge", + "description": "An edge in a connection.", + "fields": [ + { + "name": "cursor", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "node", + "args": [], + "type": {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "WorkflowRunFile", + "description": "An executed workflow file for a workflow run.", + "fields": [ + { + "name": "id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "path", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryFileUrl", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "repositoryName", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "resourcePath", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "run", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "url", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanPushRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "viewerCanReadRepository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [ + {"kind": "INTERFACE", "name": "Node", "ofType": None}, + {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, + ], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowRunOrder", + "description": "Ways in which lists of workflow runs can be ordered upon return.", + "fields": None, + "inputFields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "WorkflowRunOrderField", "ofType": None}, + }, + "defaultValue": None, + }, + { + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, + }, + "defaultValue": None, + }, + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "WorkflowRunOrderField", + "description": "Properties by which workflow run connections can be ordered.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "WorkflowState", + "description": "The possible states for a workflow.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "ACTIVE", "isDeprecated": False, "deprecationReason": None}, + {"name": "DELETED", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED_FORK", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED_INACTIVITY", "isDeprecated": False, "deprecationReason": None}, + {"name": "DISABLED_MANUALLY", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "WorkflowsParameters", + "description": "Require all changes made to a targeted branch to pass the specified workflows before they can be merged.", + "fields": [ + { + "name": "workflows", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "WorkflowFileReference", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + } + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowsParametersInput", + "description": "Require all changes made to a targeted branch to pass the specified workflows before they can be merged.", + "fields": None, + "inputFields": [ + { + "name": "workflows", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WorkflowFileReferenceInput", + "ofType": None, + }, + }, + }, + }, + "defaultValue": None, + } + ], + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "SCALAR", + "name": "X509Certificate", + "description": "A valid x509 certificate string", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "__Directive", + "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.", + "fields": [ + { + "name": "args", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__InputValue", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isRepeatable", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "locations", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "__DirectiveLocation", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "onField", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "Use `locations`.", + }, + { + "name": "onFragment", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "Use `locations`.", + }, + { + "name": "onOperation", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": True, + "deprecationReason": "Use `locations`.", + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "QUERY", "isDeprecated": False, "deprecationReason": None}, + {"name": "MUTATION", "isDeprecated": False, "deprecationReason": None}, + {"name": "SUBSCRIPTION", "isDeprecated": False, "deprecationReason": None}, + {"name": "FIELD", "isDeprecated": False, "deprecationReason": None}, + {"name": "FRAGMENT_DEFINITION", "isDeprecated": False, "deprecationReason": None}, + {"name": "FRAGMENT_SPREAD", "isDeprecated": False, "deprecationReason": None}, + {"name": "INLINE_FRAGMENT", "isDeprecated": False, "deprecationReason": None}, + {"name": "SCHEMA", "isDeprecated": False, "deprecationReason": None}, + {"name": "SCALAR", "isDeprecated": False, "deprecationReason": None}, + {"name": "OBJECT", "isDeprecated": False, "deprecationReason": None}, + {"name": "FIELD_DEFINITION", "isDeprecated": False, "deprecationReason": None}, + {"name": "ARGUMENT_DEFINITION", "isDeprecated": False, "deprecationReason": None}, + {"name": "INTERFACE", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNION", "isDeprecated": False, "deprecationReason": None}, + {"name": "ENUM", "isDeprecated": False, "deprecationReason": None}, + {"name": "ENUM_VALUE", "isDeprecated": False, "deprecationReason": None}, + {"name": "INPUT_OBJECT", "isDeprecated": False, "deprecationReason": None}, + {"name": "INPUT_FIELD_DEFINITION", "isDeprecated": False, "deprecationReason": None}, + {"name": "VARIABLE_DEFINITION", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "__EnumValue", + "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.", + "fields": [ + { + "name": "deprecationReason", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDeprecated", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "__Field", + "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.", + "fields": [ + { + "name": "args", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + } + ], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__InputValue", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deprecationReason", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDeprecated", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "type", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "__InputValue", + "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.", + "fields": [ + { + "name": "defaultValue", + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "deprecationReason", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "description", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "isDeprecated", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "type", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "__Schema", + "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.", + "fields": [ + { + "name": "description", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "directives", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__Directive", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "mutationType", + "args": [], + "type": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "queryType", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "subscriptionType", + "args": [], + "type": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "types", + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + }, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "OBJECT", + "name": "__Type", + "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 and description, 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.", + "fields": [ + { + "name": "description", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "enumValues", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + } + ], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__EnumValue", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "fields", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + } + ], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__Field", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "inputFields", + "description": None, + "args": [ + { + "name": "includeDeprecated", + "description": None, + "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + "defaultValue": "false", + } + ], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__InputValue", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "interfaces", + "description": None, + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "kind", + "description": None, + "args": [], + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "ENUM", "name": "__TypeKind", "ofType": None}, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "name", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "ofType", + "description": None, + "args": [], + "type": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "possibleTypes", + "description": None, + "args": [], + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, + }, + }, + "isDeprecated": False, + "deprecationReason": None, + }, + { + "name": "specifiedByUrl", + "description": None, + "args": [], + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + "isDeprecated": False, + "deprecationReason": None, + }, + ], + "inputFields": None, + "interfaces": [], + "enumValues": None, + "possibleTypes": None, + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": None, + "inputFields": None, + "interfaces": None, + "enumValues": [ + {"name": "SCALAR", "isDeprecated": False, "deprecationReason": None}, + {"name": "OBJECT", "isDeprecated": False, "deprecationReason": None}, + {"name": "INTERFACE", "isDeprecated": False, "deprecationReason": None}, + {"name": "UNION", "isDeprecated": False, "deprecationReason": None}, + {"name": "ENUM", "isDeprecated": False, "deprecationReason": None}, + {"name": "INPUT_OBJECT", "isDeprecated": False, "deprecationReason": None}, + {"name": "LIST", "isDeprecated": False, "deprecationReason": None}, + {"name": "NON_NULL", "isDeprecated": False, "deprecationReason": None}, + ], + "possibleTypes": None, + }, + ], + "directives": [ + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"], + "args": [ + { + "name": "if", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + } + ], + }, + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"], + "args": [ + { + "name": "if", + "type": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, + }, + "defaultValue": None, + } + ], + }, + { + "name": "deprecated", + "locations": ["FIELD_DEFINITION", "ENUM_VALUE", "ARGUMENT_DEFINITION", "INPUT_FIELD_DEFINITION"], + "args": [ + { + "name": "reason", + "type": {"kind": "SCALAR", "name": "String", "ofType": None}, + } + ], + }, + { + "name": "requiredCapabilities", + "description": None, + "locations": [ + "OBJECT", + "SCALAR", + "ARGUMENT_DEFINITION", + "INTERFACE", + "INPUT_OBJECT", + "FIELD_DEFINITION", + "ENUM", + "ENUM_VALUE", + "UNION", + "INPUT_FIELD_DEFINITION", + ], + "args": [ + { + "name": "requiredCapabilities", + "description": None, + "type": { + "kind": "LIST", + "name": None, + "ofType": { + "kind": "NON_NULL", + "name": None, + "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, + }, + }, + "defaultValue": None, + } + ], + }, + ], + } + } +} diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/introspection_json.py b/backend/lambdas/scheduled/update_github_org_users/tests/introspection_json.py deleted file mode 100644 index 3ce28951..00000000 --- a/backend/lambdas/scheduled/update_github_org_users/tests/introspection_json.py +++ /dev/null @@ -1,141840 +0,0 @@ -introspection = { - "data": { - "__schema": { - "queryType": { - "name": "Query" - }, - "mutationType": { - "name": "Mutation" - }, - "subscriptionType": None, - "types": [ - { - "kind": "INPUT_OBJECT", - "name": "AbortQueuedMigrationsInput", - "description": "Autogenerated input type of AbortQueuedMigrations", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AbortQueuedMigrationsPayload", - "description": "Autogenerated return type of AbortQueuedMigrations", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "success","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AbortRepositoryMigrationInput", - "description": "Autogenerated input type of AbortRepositoryMigration", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "migrationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AbortRepositoryMigrationPayload", - "description": "Autogenerated return type of AbortRepositoryMigration", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "success","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AcceptEnterpriseAdministratorInvitationInput", - "description": "Autogenerated input type of AcceptEnterpriseAdministratorInvitation", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "invitationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AcceptEnterpriseAdministratorInvitationPayload", - "description": "Autogenerated return type of AcceptEnterpriseAdministratorInvitation", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitation","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AcceptTopicSuggestionInput", - "description": "Autogenerated input type of AcceptTopicSuggestion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AcceptTopicSuggestionPayload", - "description": "Autogenerated return type of AcceptTopicSuggestion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topic","args": [], - "type": { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - }, - "isDeprecated": True, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Actor", - "description": "Represents an object which can take actions on GitHub. Typically a User or Bot.", - "fields": [ - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Bot", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseUserAccount", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ActorLocation", - "description": "Location information for an actor", - "fields": [ - { - "name": "city","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "country","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "countryCode","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "region","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "regionCode","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ActorType", - "description": "The actor's type.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "USER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TEAM","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddAssigneesToAssignableInput", - "description": "Autogenerated input type of AddAssigneesToAssignable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "assignableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "assigneeIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddAssigneesToAssignablePayload", - "description": "Autogenerated return type of AddAssigneesToAssignable", - "fields": [ - { - "name": "assignable","args": [], - "type": { - "kind": "INTERFACE", - "name": "Assignable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCommentInput", - "description": "Autogenerated input type of AddComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "subjectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddCommentPayload", - "description": "Autogenerated return type of AddComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commentEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "IssueCommentEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "timelineEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "IssueTimelineItemEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddDiscussionCommentInput", - "description": "Autogenerated input type of AddDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "discussionId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "replyToId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddDiscussionCommentPayload", - "description": "Autogenerated return type of AddDiscussionComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comment","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddDiscussionPollVoteInput", - "description": "Autogenerated input type of AddDiscussionPollVote", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pollOptionId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddDiscussionPollVotePayload", - "description": "Autogenerated return type of AddDiscussionPollVote", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pollOption","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionPollOption", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddEnterpriseOrganizationMemberInput", - "description": "Autogenerated input type of AddEnterpriseOrganizationMember", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "userIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "role","type": { - "kind": "ENUM", - "name": "OrganizationMemberRole", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddEnterpriseOrganizationMemberPayload", - "description": "Autogenerated return type of AddEnterpriseOrganizationMember", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "users","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddEnterpriseSupportEntitlementInput", - "description": "Autogenerated input type of AddEnterpriseSupportEntitlement", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "login","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddEnterpriseSupportEntitlementPayload", - "description": "Autogenerated return type of AddEnterpriseSupportEntitlement", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddLabelsToLabelableInput", - "description": "Autogenerated input type of AddLabelsToLabelable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labelableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "labelIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddLabelsToLabelablePayload", - "description": "Autogenerated return type of AddLabelsToLabelable", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labelable","args": [], - "type": { - "kind": "INTERFACE", - "name": "Labelable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProjectCardInput", - "description": "Autogenerated input type of AddProjectCard", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectColumnId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "contentId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "note","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddProjectCardPayload", - "description": "Autogenerated return type of AddProjectCard", - "fields": [ - { - "name": "cardEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectCardEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectColumn","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectColumn", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProjectColumnInput", - "description": "Autogenerated input type of AddProjectColumn", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddProjectColumnPayload", - "description": "Autogenerated return type of AddProjectColumn", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "columnEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectColumnEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProjectV2DraftIssueInput", - "description": "Autogenerated input type of AddProjectV2DraftIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "assigneeIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddProjectV2DraftIssuePayload", - "description": "Autogenerated return type of AddProjectV2DraftIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectItem","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProjectV2ItemByIdInput", - "description": "Autogenerated input type of AddProjectV2ItemById", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "contentId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddProjectV2ItemByIdPayload", - "description": "Autogenerated return type of AddProjectV2ItemById", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewCommentInput", - "description": "Autogenerated input type of AddPullRequestReviewComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "commitOID","type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "path","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "position","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "inReplyTo","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddPullRequestReviewCommentPayload", - "description": "Autogenerated return type of AddPullRequestReviewComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comment","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commentEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewCommentEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewInput", - "description": "Autogenerated input type of AddPullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "commitOID","type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "event","type": { - "kind": "ENUM", - "name": "PullRequestReviewEvent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "comments","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DraftPullRequestReviewComment", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "threads","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DraftPullRequestReviewThread", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddPullRequestReviewPayload", - "description": "Autogenerated return type of AddPullRequestReview", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReview","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewThreadInput", - "description": "Autogenerated input type of AddPullRequestReviewThread", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "line","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "side","type": { - "kind": "ENUM", - "name": "DiffSide", - "ofType": None - }, - "defaultValue": "RIGHT" - }, - { - "name": "startLine","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "startSide","type": { - "kind": "ENUM", - "name": "DiffSide", - "ofType": None - }, - "defaultValue": "RIGHT" - }, - { - "name": "subjectType","type": { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "ofType": None - }, - "defaultValue": "LINE" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddPullRequestReviewThreadPayload", - "description": "Autogenerated return type of AddPullRequestReviewThread", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "thread","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewThreadReplyInput", - "description": "Autogenerated input type of AddPullRequestReviewThreadReply", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewThreadId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddPullRequestReviewThreadReplyPayload", - "description": "Autogenerated return type of AddPullRequestReviewThreadReply", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comment","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddReactionInput", - "description": "Autogenerated input type of AddReaction", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "subjectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "content","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddReactionPayload", - "description": "Autogenerated return type of AddReaction", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reaction","args": [], - "type": { - "kind": "OBJECT", - "name": "Reaction", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddStarInput", - "description": "Autogenerated input type of AddStar", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "starrableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddStarPayload", - "description": "Autogenerated return type of AddStar", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "starrable","args": [], - "type": { - "kind": "INTERFACE", - "name": "Starrable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddUpvoteInput", - "description": "Autogenerated input type of AddUpvote", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "subjectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddUpvotePayload", - "description": "Autogenerated return type of AddUpvote", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "INTERFACE", - "name": "Votable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "AddVerifiableDomainInput", - "description": "Autogenerated input type of AddVerifiableDomain", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "domain","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddVerifiableDomainPayload", - "description": "Autogenerated return type of AddVerifiableDomain", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "domain","args": [], - "type": { - "kind": "OBJECT", - "name": "VerifiableDomain", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddedToMergeQueueEvent", - "description": "Represents an 'added_to_merge_queue' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enqueuer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeQueue","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AddedToProjectEvent", - "description": "Represents a 'added_to_project' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectCard","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectCard", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectColumnName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "AnnouncementBanner", - "description": "Represents an announcement banner.", - "fields": [ - { - "name": "announcement","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "announcementExpiresAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "announcementUserDismissible","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "App", - "description": "A GitHub App.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListEntries","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for IP allow list entries returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IpAllowListEntryOrder", - "ofType": None - }, - "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IpAllowListEntryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "logoBackgroundColor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "logoUrl","args": [ - { - "name": "size", - "description": "The size of the resulting image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "slug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ApproveDeploymentsPayload", - "description": "Autogenerated return type of ApproveDeployments", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployments","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ApproveVerifiableDomainInput", - "description": "Autogenerated input type of ApproveVerifiableDomain", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ApproveVerifiableDomainPayload", - "description": "Autogenerated return type of ApproveVerifiableDomain", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "domain","args": [], - "type": { - "kind": "OBJECT", - "name": "VerifiableDomain", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ArchiveProjectV2ItemInput", - "description": "Autogenerated input type of ArchiveProjectV2Item", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "itemId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ArchiveProjectV2ItemPayload", - "description": "Autogenerated return type of ArchiveProjectV2Item", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ArchiveRepositoryInput", - "description": "Autogenerated input type of ArchiveRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ArchiveRepositoryPayload", - "description": "Autogenerated return type of ArchiveRepository", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Assignable", - "description": "An object that can have users assigned to it.", - "fields": [ - { - "name": "assignees","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "AssignedEvent", - "description": "Represents an 'assigned' event on any assignable object.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assignable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Assignable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assignee","args": [], - "type": { - "kind": "UNION", - "name": "Assignee", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC." - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "Assignee", - "description": "Types that can be assigned to issues.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Bot", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "INTERFACE", - "name": "AuditEntry", - "description": "An entry in the audit log.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposClearAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OauthApplicationCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgAddBillingManagerAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgBlockUserAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableOauthAppRestrictionsAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableSamlAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableTwoFactorRequirementAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableOauthAppRestrictionsAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableSamlAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableTwoFactorRequirementAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteToBusinessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessApprovedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessBlockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessDeniedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessRequestedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessUnblockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveBillingManagerAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveOutsideCollaboratorAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUnblockUserAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoArchivedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoChangeMergeSettingAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigLockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoDestroyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddRepositoryAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamChangeParentTeamAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveRepositoryAuditEntry", - "ofType": None - } - ] - }, - { - "kind": "UNION", - "name": "AuditEntryActor", - "description": "Types that can initiate an audit log event.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Bot", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "AuditLogOrder", - "description": "Ordering options for Audit Log connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "ENUM", - "name": "AuditLogOrderField", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "AuditLogOrderField", - "description": "Properties by which Audit Log connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AutoMergeDisabledEvent", - "description": "Represents a 'auto_merge_disabled' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "disabler","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reasonCode","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AutoMergeEnabledEvent", - "description": "Represents a 'auto_merge_enabled' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enabler","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AutoMergeRequest", - "description": "Represents an auto-merge request for a pull request", - "fields": [ - { - "name": "authorEmail","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitBody","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitHeadline","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enabledAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enabledBy","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeMethod","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AutoRebaseEnabledEvent", - "description": "Represents a 'auto_rebase_enabled' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enabler","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AutoSquashEnabledEvent", - "description": "Represents a 'auto_squash_enabled' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enabler","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AutomaticBaseChangeFailedEvent", - "description": "Represents a 'automatic_base_change_failed' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "newBase","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oldBase","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "AutomaticBaseChangeSucceededEvent", - "description": "Represents a 'automatic_base_change_succeeded' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "newBase","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oldBase","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "Base64String", - "description": "A (potentially binary) string encoded using base64.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BaseRefChangedEvent", - "description": "Represents a 'base_ref_changed' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "currentRefName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "previousRefName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BaseRefDeletedEvent", - "description": "Represents a 'base_ref_deleted' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "baseRefName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BaseRefForcePushedEvent", - "description": "Represents a 'base_ref_force_pushed' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "afterCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "beforeCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "BigInt", - "description": "Represents non-fractional signed whole numeric values. Since the value may exceed the size of a 32-bit integer, it's encoded as a string.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Blame", - "description": "Represents a Git blame.", - "fields": [ - { - "name": "ranges","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BlameRange", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BlameRange", - "description": "Represents a range of information from a Git blame.", - "fields": [ - { - "name": "age","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "endingLine","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startingLine","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Blob", - "description": "Represents a Git blob.", - "fields": [ - { - "name": "abbreviatedOid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "byteSize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isBinary","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isTruncated","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "text","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "Represents `true` or `false` values.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Bot", - "description": "A special type of user which takes actions on behalf of GitHub Apps.", - "fields": [ - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "BranchActorAllowanceActor", - "description": "Types which can be actors for `BranchActorAllowance` objects.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "BranchNamePatternParameters", - "description": "Parameters to be used for the branch_name_pattern rule", - "fields": [ - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "negate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operator","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pattern","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "BranchNamePatternParametersInput", - "description": "Parameters to be used for the branch_name_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "negate","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "operator","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "pattern","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "description": "A branch protection rule.", - "fields": [ - { - "name": "allowsDeletions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "allowsForcePushes","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blocksCreations","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "branchProtectionRuleConflicts","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflictConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bypassForcePushAllowances","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BypassForcePushAllowanceConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bypassPullRequestAllowances","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BypassPullRequestAllowanceConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismissesStaleReviews","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isAdminEnforced","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockAllowsFetchAndMerge","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockBranch","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "matchingRefs","args": [ - { - "name": "query", - "description": "Filters refs with query on name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RefConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pattern","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pushAllowances","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PushAllowanceConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requireLastPushApproval","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiredApprovingReviewCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiredDeploymentEnvironments","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiredStatusCheckContexts","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiredStatusChecks","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RequiredStatusCheckDescription", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresApprovingReviews","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresCodeOwnerReviews","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresCommitSignatures","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresConversationResolution","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresDeployments","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresLinearHistory","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresStatusChecks","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresStrictStatusChecks","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restrictsPushes","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restrictsReviewDismissals","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewDismissalAllowances","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReviewDismissalAllowanceConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflict", - "description": "A conflict between two branch protection rules.", - "fields": [ - { - "name": "branchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "conflictingBranchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflictConnection", - "description": "The connection type for BranchProtectionRuleConflict.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflictEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflict", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflictEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflict", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleConnection", - "description": "The connection type for BranchProtectionRule.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BranchProtectionRuleEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "BulkSponsorship", - "description": "Information about a sponsorship to make for a user or organization with a GitHub Sponsors profile, as part of sponsoring many users or organizations at once.", - "fields": None, - "inputFields": [ - { - "name": "sponsorableId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "amount","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "BypassActor", - "description": "Types that can represent a repository ruleset bypass actor.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "BypassForcePushAllowance", - "description": "A user, team, or app who has the ability to bypass a force push requirement on a protected branch.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "BranchActorAllowanceActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "branchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BypassForcePushAllowanceConnection", - "description": "The connection type for BypassForcePushAllowance.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BypassForcePushAllowanceEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BypassForcePushAllowance", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BypassForcePushAllowanceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "BypassForcePushAllowance", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BypassPullRequestAllowance", - "description": "A user, team, or app who has the ability to bypass a pull request requirement on a protected branch.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "BranchActorAllowanceActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "branchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BypassPullRequestAllowanceConnection", - "description": "The connection type for BypassPullRequestAllowance.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BypassPullRequestAllowanceEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BypassPullRequestAllowance", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "BypassPullRequestAllowanceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "BypassPullRequestAllowance", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CVSS", - "description": "The Common Vulnerability Scoring System", - "fields": [ - { - "name": "score","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "vectorString","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CWE", - "description": "A common weakness enumeration", - "fields": [ - { - "name": "cweId","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CWEConnection", - "description": "The connection type for CWE.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CWEEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CWE", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CWEEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CWE", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CancelEnterpriseAdminInvitationInput", - "description": "Autogenerated input type of CancelEnterpriseAdminInvitation", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "invitationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CancelEnterpriseAdminInvitationPayload", - "description": "Autogenerated return type of CancelEnterpriseAdminInvitation", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitation","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CancelSponsorshipInput", - "description": "Autogenerated input type of CancelSponsorship", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CancelSponsorshipPayload", - "description": "Autogenerated return type of CancelSponsorship", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsTier","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeUserStatusInput", - "description": "Autogenerated input type of ChangeUserStatus", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "emoji","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "message","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "limitedAvailability","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "expiresAt","type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ChangeUserStatusPayload", - "description": "Autogenerated return type of ChangeUserStatus", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "status","args": [], - "type": { - "kind": "OBJECT", - "name": "UserStatus", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckAnnotation", - "description": "A single check annotation.", - "fields": [ - { - "name": "annotationLevel","args": [], - "type": { - "kind": "ENUM", - "name": "CheckAnnotationLevel", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blobUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "location","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckAnnotationSpan", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rawDetails","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckAnnotationConnection", - "description": "The connection type for CheckAnnotation.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckAnnotationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckAnnotation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckAnnotationData", - "description": "Information from a check run analysis to specific lines of code.", - "fields": None, - "inputFields": [ - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "location","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CheckAnnotationRange", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "annotationLevel","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CheckAnnotationLevel", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "message","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "rawDetails","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckAnnotationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CheckAnnotation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "CheckAnnotationLevel", - "description": "Represents an annotation's information level.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "FAILURE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NOTICE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WARNING","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckAnnotationPosition", - "description": "A character position in a check annotation.", - "fields": [ - { - "name": "column","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "line","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckAnnotationRange", - "description": "Information from a check run analysis to specific lines of code.", - "fields": None, - "inputFields": [ - { - "name": "startLine","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "startColumn","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "endLine","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "endColumn","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckAnnotationSpan", - "description": "An inclusive pair of positions for a check annotation.", - "fields": [ - { - "name": "end","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckAnnotationPosition", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "start","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckAnnotationPosition", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "CheckConclusionState", - "description": "The possible states for a check suite or run conclusion.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ACTION_REQUIRED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TIMED_OUT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CANCELLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILURE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUCCESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NEUTRAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SKIPPED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "STARTUP_FAILURE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "STALE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckRun", - "description": "A check run.", - "fields": [ - { - "name": "annotations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CheckAnnotationConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "checkSuite","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckSuite", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "completedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "conclusion","args": [], - "type": { - "kind": "ENUM", - "name": "CheckConclusionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployment","args": [], - "type": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "detailsUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "externalId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isRequired","args": [ - { - "name": "pullRequestId", - "description": "The id of the pull request this is required for", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestNumber", - "description": "The number of the pull request this is required for", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pendingDeploymentRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "DeploymentRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permalink","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "status","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CheckStatusState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "steps","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "number", - "description": "Step number", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CheckStepConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "summary","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "text","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RequirableByPullRequest", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckRunAction", - "description": "Possible further actions the integrator can perform.", - "fields": None, - "inputFields": [ - { - "name": "label","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "identifier","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckRunConnection", - "description": "The connection type for CheckRun.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckRunEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckRun", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckRunEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CheckRun", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckRunFilter", - "description": "The filters that are available when fetching check runs.", - "fields": None, - "inputFields": [ - { - "name": "checkType","type": { - "kind": "ENUM", - "name": "CheckRunType", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "appId","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "checkName","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "status","type": { - "kind": "ENUM", - "name": "CheckStatusState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "statuses","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CheckStatusState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "conclusions","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CheckConclusionState", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckRunOutput", - "description": "Descriptive details about the check run.", - "fields": None, - "inputFields": [ - { - "name": "title","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "summary","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "text","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "annotations","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CheckAnnotationData", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "images","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CheckRunOutputImage", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckRunOutputImage", - "description": "Images attached to the check run output displayed in the GitHub pull request UI.", - "fields": None, - "inputFields": [ - { - "name": "alt","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "imageUrl","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "caption","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "CheckRunState", - "description": "The possible states of a check run in a status rollup.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ACTION_REQUIRED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CANCELLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMPLETED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILURE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN_PROGRESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NEUTRAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "QUEUED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SKIPPED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "STALE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "STARTUP_FAILURE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUCCESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TIMED_OUT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WAITING","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckRunStateCount", - "description": "Represents a count of the state of a check run.", - "fields": [ - { - "name": "count","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CheckRunState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "CheckRunType", - "description": "The possible types of check runs.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LATEST","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "CheckStatusState", - "description": "The possible states for a check suite or run status.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "REQUESTED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "QUEUED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN_PROGRESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMPLETED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WAITING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckStep", - "description": "A single check step.", - "fields": [ - { - "name": "completedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "conclusion","args": [], - "type": { - "kind": "ENUM", - "name": "CheckConclusionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "externalId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "secondsToCompletion","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "status","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CheckStatusState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckStepConnection", - "description": "The connection type for CheckStep.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckStepEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckStep", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckStepEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CheckStep", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckSuite", - "description": "A check suite.", - "fields": [ - { - "name": "app","args": [], - "type": { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "branch","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "checkRuns","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "filterBy", - "description": "Filters the check runs by this type.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CheckRunFilter", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CheckRunConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "conclusion","args": [], - "type": { - "kind": "ENUM", - "name": "CheckConclusionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "matchingPullRequests","args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequestConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "push","args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "status","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CheckStatusState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "workflowRun","args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowRun", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckSuiteAutoTriggerPreference", - "description": "The auto-trigger preferences that are available for check suites.", - "fields": None, - "inputFields": [ - { - "name": "appId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "setting","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckSuiteConnection", - "description": "The connection type for CheckSuite.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckSuiteEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckSuite", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CheckSuiteEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CheckSuite", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckSuiteFilter", - "description": "The filters that are available when fetching check suites.", - "fields": None, - "inputFields": [ - { - "name": "appId","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "checkName","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "Claimable", - "description": "An object which can have its data claimed or claim data from another.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "ClearLabelsFromLabelableInput", - "description": "Autogenerated input type of ClearLabelsFromLabelable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labelableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ClearLabelsFromLabelablePayload", - "description": "Autogenerated return type of ClearLabelsFromLabelable", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labelable","args": [], - "type": { - "kind": "INTERFACE", - "name": "Labelable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ClearProjectV2ItemFieldValueInput", - "description": "Autogenerated input type of ClearProjectV2ItemFieldValue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "itemId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "fieldId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ClearProjectV2ItemFieldValuePayload", - "description": "Autogenerated return type of ClearProjectV2ItemFieldValue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2Item","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CloneProjectInput", - "description": "Autogenerated input type of CloneProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "targetOwnerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "sourceId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "includeWorkflows","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "public","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CloneProjectPayload", - "description": "Autogenerated return type of CloneProject", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "jobStatusId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CloneTemplateRepositoryInput", - "description": "Autogenerated input type of CloneTemplateRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "visibility","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "includeAllBranches","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CloneTemplateRepositoryPayload", - "description": "Autogenerated return type of CloneTemplateRepository", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Closable", - "description": "An object that can be closed", - "fields": [ - { - "name": "closed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanClose","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReopen","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "CloseDiscussionInput", - "description": "Autogenerated input type of CloseDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "discussionId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "reason","type": { - "kind": "ENUM", - "name": "DiscussionCloseReason", - "ofType": None - }, - "defaultValue": "RESOLVED" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CloseDiscussionPayload", - "description": "Autogenerated return type of CloseDiscussion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CloseIssueInput", - "description": "Autogenerated input type of CloseIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "issueId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "stateReason","type": { - "kind": "ENUM", - "name": "IssueClosedStateReason", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CloseIssuePayload", - "description": "Autogenerated return type of CloseIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ClosePullRequestInput", - "description": "Autogenerated input type of ClosePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ClosePullRequestPayload", - "description": "Autogenerated return type of ClosePullRequest", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ClosedEvent", - "description": "Represents a 'closed' event on any `Closable`.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Closable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closer","args": [], - "type": { - "kind": "UNION", - "name": "Closer", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stateReason","args": [], - "type": { - "kind": "ENUM", - "name": "IssueStateReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "Closer", - "description": "The object which triggered a `ClosedEvent`.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "CodeOfConduct", - "description": "The Code of Conduct for a repository", - "fields": [ - { - "name": "body","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "key","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "CollaboratorAffiliation", - "description": "Collaborators affiliation level with a subject.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OUTSIDE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DIRECT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Comment", - "description": "Represents a comment.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "GistComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - } - ] - }, - { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "description": "A comment author association with repository.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MEMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OWNER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MANNEQUIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COLLABORATOR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONTRIBUTOR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FIRST_TIME_CONTRIBUTOR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FIRST_TIMER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "description": "The possible errors that will prevent a user from updating a comment.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ARCHIVED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INSUFFICIENT_ACCESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LOCKED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LOGIN_REQUIRED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MAINTENANCE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VERIFIED_EMAIL_REQUIRED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DENIED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommentDeletedEvent", - "description": "Represents a 'comment_deleted' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletedCommentAuthor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Commit", - "description": "Represents a Git commit.", - "fields": [ - { - "name": "abbreviatedOid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "additions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "associatedPullRequests","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PullRequestOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequestConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "author","args": [], - "type": { - "kind": "OBJECT", - "name": "GitActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authoredByCommitter","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authoredDate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authors","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GitActorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blame","args": [ - { - "name": "path", - "description": "The file whose Git blame information you want.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Blame", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "changedFiles","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "`changedFiles` will be removed. Use `changedFilesIfAvailable` instead. Removal on 2023-01-01 UTC." - }, - { - "name": "changedFilesIfAvailable","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "checkSuites","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "filterBy", - "description": "Filters the check suites by this type.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CheckSuiteFilter", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CheckSuiteConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "committedDate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "committedViaWeb","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "committer","args": [], - "type": { - "kind": "OBJECT", - "name": "GitActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployments","args": [ - { - "name": "environments", - "description": "Environments to list deployments for", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for deployments returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DeploymentOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeploymentConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "file","args": [ - { - "name": "path", - "description": "The path for the file", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "TreeEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "history","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "path", - "description": "If non-null, filters history to only show commits touching files under this path.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "author", - "description": "If non-null, filters history to only show commits with matching authorship.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CommitAuthor", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "since", - "description": "Allows specifying a beginning time or date for fetching commits.", - "type": { - "kind": "SCALAR", - "name": "GitTimestamp", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "until", - "description": "Allows specifying an ending time or date for fetching commits.", - "type": { - "kind": "SCALAR", - "name": "GitTimestamp", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitHistoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "messageBody","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "messageBodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "messageHeadline","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "messageHeadlineHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "onBehalfOf","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parents","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pushedDate","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": True, - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signature","args": [], - "type": { - "kind": "INTERFACE", - "name": "GitSignature", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "status","args": [], - "type": { - "kind": "OBJECT", - "name": "Status", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "statusCheckRollup","args": [], - "type": { - "kind": "OBJECT", - "name": "StatusCheckRollup", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "submodules","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SubmoduleConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tarballUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tree","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Tree", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "treeResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "treeUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSubscribe","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerSubscription","args": [], - "type": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "zipballUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitAuthor", - "description": "Specifies an author for filtering Git commits.", - "fields": None, - "inputFields": [ - { - "name": "id","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "emails","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitAuthorEmailPatternParameters", - "description": "Parameters to be used for the commit_author_email_pattern rule", - "fields": [ - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "negate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operator","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pattern","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitAuthorEmailPatternParametersInput", - "description": "Parameters to be used for the commit_author_email_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "negate","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "operator","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "pattern","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitComment", - "description": "Represents a comment on a given Commit.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMinimized","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizedReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "position","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMinimize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Minimizable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitCommentConnection", - "description": "The connection type for CommitComment.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitCommentEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitCommentThread", - "description": "A thread of comments on a commit.", - "fields": [ - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "position","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitConnection", - "description": "The connection type for Commit.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitContributionOrder", - "description": "Ordering options for commit contribution connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommitContributionOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "CommitContributionOrderField", - "description": "Properties by which commit contribution connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OCCURRED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMIT_COUNT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitContributionsByRepository", - "description": "This aggregates commits made by a user within one repository.", - "fields": [ - { - "name": "contributions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for commit contributions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CommitContributionOrder", - "ofType": None - }, - "defaultValue": "{field: OCCURRED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedCommitContributionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitHistoryConnection", - "description": "The connection type for Commit.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitMessage", - "description": "A message to include with a new commit", - "fields": None, - "inputFields": [ - { - "name": "headline","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitMessagePatternParameters", - "description": "Parameters to be used for the commit_message_pattern rule", - "fields": [ - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "negate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operator","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pattern","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitMessagePatternParametersInput", - "description": "Parameters to be used for the commit_message_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "negate","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "operator","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "pattern","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CommittableBranch", - "fields": None, - "inputFields": [ - { - "name": "id","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryNameWithOwner","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "branchName","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CommitterEmailPatternParameters", - "description": "Parameters to be used for the committer_email_pattern rule", - "fields": [ - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "negate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operator","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pattern","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitterEmailPatternParametersInput", - "description": "Parameters to be used for the committer_email_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "negate","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "operator","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "pattern","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Comparison", - "description": "Represents a comparison between two commit revisions.", - "fields": [ - { - "name": "aheadBy","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "baseTarget","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "behindBy","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ComparisonCommitConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headTarget","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "status","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ComparisonStatus", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ComparisonCommitConnection", - "description": "The connection type for Commit.", - "fields": [ - { - "name": "authorCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ComparisonStatus", - "description": "The status of a git comparison between two refs.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DIVERGED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AHEAD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BEHIND","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IDENTICAL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ConnectedEvent", - "description": "Represents a 'connected' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCrossRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "source","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ReferencedSubject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ReferencedSubject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ContributingGuidelines", - "description": "The Contributing Guidelines for a repository.", - "fields": [ - { - "name": "body","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Contribution", - "description": "Represents a contribution a user made on GitHub, such as opening an issue.", - "fields": [ - { - "name": "isRestricted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "occurredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CreatedCommitContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CreatedIssueContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CreatedRepositoryContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "JoinedGitHubContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RestrictedContribution", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ContributionCalendar", - "description": "A calendar of contributions made on GitHub by a user.", - "fields": [ - { - "name": "colors","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isHalloween","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "months","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ContributionCalendarMonth", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalContributions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "weeks","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ContributionCalendarWeek", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ContributionCalendarDay", - "description": "Represents a single day of contributions on GitHub by a user.", - "fields": [ - { - "name": "color","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contributionCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contributionLevel","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ContributionLevel", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "date","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "weekday","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ContributionCalendarMonth", - "description": "A month of contributions in a user's contribution graph.", - "fields": [ - { - "name": "firstDay","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalWeeks","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "year","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ContributionCalendarWeek", - "description": "A week of contributions in a user's contribution graph.", - "fields": [ - { - "name": "contributionDays","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ContributionCalendarDay", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "firstDay","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ContributionLevel", - "description": "Varying levels of contributions from none to many.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FIRST_QUARTILE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SECOND_QUARTILE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "THIRD_QUARTILE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FOURTH_QUARTILE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "description": "Ordering options for contribution connections.", - "fields": None, - "inputFields": [ - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ContributionsCollection", - "description": "A contributions collection aggregates contributions such as opened issues and commits created by a user.", - "fields": [ - { - "name": "commitContributionsByRepository","args": [ - { - "name": "maxRepositories", - "description": "How many repositories should be included.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "25" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitContributionsByRepository", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contributionCalendar","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ContributionCalendar", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contributionYears","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "doesEndInCurrentMonth","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "earliestRestrictedContributionDate","args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "endedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "firstIssueContribution","args": [], - "type": { - "kind": "UNION", - "name": "CreatedIssueOrRestrictedContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "firstPullRequestContribution","args": [], - "type": { - "kind": "UNION", - "name": "CreatedPullRequestOrRestrictedContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "firstRepositoryContribution","args": [], - "type": { - "kind": "UNION", - "name": "CreatedRepositoryOrRestrictedContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasActivityInThePast","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasAnyContributions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasAnyRestrictedContributions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSingleDay","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issueContributions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "excludeFirst", - "description": "Should the user's first issue ever be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "excludePopular", - "description": "Should the user's most commented issue be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "ofType": None - }, - "defaultValue": "{direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedIssueContributionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issueContributionsByRepository","args": [ - { - "name": "maxRepositories", - "description": "How many repositories should be included.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "25" - }, - { - "name": "excludeFirst", - "description": "Should the user's first issue ever be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "excludePopular", - "description": "Should the user's most commented issue be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueContributionsByRepository", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "joinedGitHubContribution","args": [], - "type": { - "kind": "OBJECT", - "name": "JoinedGitHubContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "latestRestrictedContributionDate","args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mostRecentCollectionWithActivity","args": [], - "type": { - "kind": "OBJECT", - "name": "ContributionsCollection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mostRecentCollectionWithoutActivity","args": [], - "type": { - "kind": "OBJECT", - "name": "ContributionsCollection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "popularIssueContribution","args": [], - "type": { - "kind": "OBJECT", - "name": "CreatedIssueContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "popularPullRequestContribution","args": [], - "type": { - "kind": "OBJECT", - "name": "CreatedPullRequestContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestContributions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "excludeFirst", - "description": "Should the user's first pull request ever be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "excludePopular", - "description": "Should the user's most commented pull request be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "ofType": None - }, - "defaultValue": "{direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestContributionsByRepository","args": [ - { - "name": "maxRepositories", - "description": "How many repositories should be included.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "25" - }, - { - "name": "excludeFirst", - "description": "Should the user's first pull request ever be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "excludePopular", - "description": "Should the user's most commented pull request be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestContributionsByRepository", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReviewContributions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "ofType": None - }, - "defaultValue": "{direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReviewContributionsByRepository","args": [ - { - "name": "maxRepositories", - "description": "How many repositories should be included.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "25" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewContributionsByRepository", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryContributions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "excludeFirst", - "description": "Should the user's first repository ever be excluded from the result.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "ofType": None - }, - "defaultValue": "{direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedRepositoryContributionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restrictedContributionsCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCommitContributions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalIssueContributions","args": [ - { - "name": "excludeFirst", - "description": "Should the user's first issue ever be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "excludePopular", - "description": "Should the user's most commented issue be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalPullRequestContributions","args": [ - { - "name": "excludeFirst", - "description": "Should the user's first pull request ever be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "excludePopular", - "description": "Should the user's most commented pull request be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalPullRequestReviewContributions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalRepositoriesWithContributedCommits","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalRepositoriesWithContributedIssues","args": [ - { - "name": "excludeFirst", - "description": "Should the user's first issue ever be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "excludePopular", - "description": "Should the user's most commented issue be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalRepositoriesWithContributedPullRequestReviews","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalRepositoriesWithContributedPullRequests","args": [ - { - "name": "excludeFirst", - "description": "Should the user's first pull request ever be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "excludePopular", - "description": "Should the user's most commented pull request be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalRepositoryContributions","args": [ - { - "name": "excludeFirst", - "description": "Should the user's first repository ever be excluded from this count.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ConvertProjectCardNoteToIssueInput", - "description": "Autogenerated input type of ConvertProjectCardNoteToIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectCardId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ConvertProjectCardNoteToIssuePayload", - "description": "Autogenerated return type of ConvertProjectCardNoteToIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectCard","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectCard", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ConvertPullRequestToDraftInput", - "description": "Autogenerated input type of ConvertPullRequestToDraft", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ConvertPullRequestToDraftPayload", - "description": "Autogenerated return type of ConvertPullRequestToDraft", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ConvertToDraftEvent", - "description": "Represents a 'convert_to_draft' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ConvertedNoteToIssueEvent", - "description": "Represents a 'converted_note_to_issue' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectCard","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectCard", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectColumnName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ConvertedToDiscussionEvent", - "description": "Represents a 'converted_to_discussion' event on a given issue.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CopyProjectV2Input", - "description": "Autogenerated input type of CopyProjectV2", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "includeDraftIssues","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CopyProjectV2Payload", - "description": "Autogenerated return type of CopyProjectV2", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateAttributionInvitationInput", - "description": "Autogenerated input type of CreateAttributionInvitation", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "sourceId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "targetId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateAttributionInvitationPayload", - "description": "Autogenerated return type of CreateAttributionInvitation", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "source","args": [], - "type": { - "kind": "UNION", - "name": "Claimable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "target","args": [], - "type": { - "kind": "UNION", - "name": "Claimable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateBranchProtectionRuleInput", - "description": "Autogenerated input type of CreateBranchProtectionRule", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "pattern","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "requiresApprovingReviews","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiredApprovingReviewCount","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresCommitSignatures","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresLinearHistory","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "blocksCreations","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "allowsForcePushes","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "allowsDeletions","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isAdminEnforced","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresStatusChecks","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresStrictStatusChecks","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresCodeOwnerReviews","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "dismissesStaleReviews","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "restrictsReviewDismissals","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "reviewDismissalActorIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "bypassPullRequestActorIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "bypassForcePushActorIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "restrictsPushes","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pushActorIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "requiredStatusCheckContexts","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "requiredStatusChecks","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusCheckInput", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "requiresDeployments","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiredDeploymentEnvironments","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "requiresConversationResolution","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requireLastPushApproval","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "lockBranch","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "lockAllowsFetchAndMerge","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateBranchProtectionRulePayload", - "description": "Autogenerated return type of CreateBranchProtectionRule", - "fields": [ - { - "name": "branchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateCheckRunInput", - "description": "Autogenerated input type of CreateCheckRun", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "headSha","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "detailsUrl","type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "externalId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "status","type": { - "kind": "ENUM", - "name": "RequestableCheckStatusState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "startedAt","type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "conclusion","type": { - "kind": "ENUM", - "name": "CheckConclusionState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "completedAt","type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "output","type": { - "kind": "INPUT_OBJECT", - "name": "CheckRunOutput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "actions","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CheckRunAction", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateCheckRunPayload", - "description": "Autogenerated return type of CreateCheckRun", - "fields": [ - { - "name": "checkRun","args": [], - "type": { - "kind": "OBJECT", - "name": "CheckRun", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateCheckSuiteInput", - "description": "Autogenerated input type of CreateCheckSuite", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "headSha","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateCheckSuitePayload", - "description": "Autogenerated return type of CreateCheckSuite", - "fields": [ - { - "name": "checkSuite","args": [], - "type": { - "kind": "OBJECT", - "name": "CheckSuite", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateCommitOnBranchInput", - "description": "Autogenerated input type of CreateCommitOnBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "branch","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommittableBranch", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "fileChanges","type": { - "kind": "INPUT_OBJECT", - "name": "FileChanges", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "message","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CommitMessage", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "expectedHeadOid","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateCommitOnBranchPayload", - "description": "Autogenerated return type of CreateCommitOnBranch", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateDeploymentPayload", - "description": "Autogenerated return type of CreateDeployment", - "fields": [ - { - "name": "autoMerged","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployment","args": [], - "type": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateDeploymentStatusInput", - "description": "Autogenerated input type of CreateDeploymentStatus", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "deploymentId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "state","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DeploymentStatusState", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - { - "name": "environment","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "environmentUrl","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - { - "name": "autoInactive","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "logUrl","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateDeploymentStatusPayload", - "description": "Autogenerated return type of CreateDeploymentStatus", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deploymentStatus","args": [], - "type": { - "kind": "OBJECT", - "name": "DeploymentStatus", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateDiscussionInput", - "description": "Autogenerated input type of CreateDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "categoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateDiscussionPayload", - "description": "Autogenerated return type of CreateDiscussion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateEnterpriseOrganizationInput", - "description": "Autogenerated input type of CreateEnterpriseOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "login","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "profileName","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "billingEmail","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "adminLogins","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateEnterpriseOrganizationPayload", - "description": "Autogenerated return type of CreateEnterpriseOrganization", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateEnvironmentInput", - "description": "Autogenerated input type of CreateEnvironment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateEnvironmentPayload", - "description": "Autogenerated return type of CreateEnvironment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environment","args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateIpAllowListEntryInput", - "description": "Autogenerated input type of CreateIpAllowListEntry", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "allowListValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isActive","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateIpAllowListEntryPayload", - "description": "Autogenerated return type of CreateIpAllowListEntry", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListEntry","args": [], - "type": { - "kind": "OBJECT", - "name": "IpAllowListEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateIssueInput", - "description": "Autogenerated input type of CreateIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "assigneeIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "milestoneId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labelIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "projectIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "issueTemplate","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateIssuePayload", - "description": "Autogenerated return type of CreateIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateLabelInput", - "description": "Autogenerated input type of CreateLabel", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "color","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateLabelPayload", - "description": "Autogenerated return type of CreateLabel", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "label","args": [], - "type": { - "kind": "OBJECT", - "name": "Label", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateLinkedBranchInput", - "description": "Autogenerated input type of CreateLinkedBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "issueId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "oid","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateLinkedBranchPayload", - "description": "Autogenerated return type of CreateLinkedBranch", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "linkedBranch","args": [], - "type": { - "kind": "OBJECT", - "name": "LinkedBranch", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateMigrationSourceInput", - "description": "Autogenerated input type of CreateMigrationSource", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "url","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "accessToken","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "type","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MigrationSourceType", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "githubPat","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateMigrationSourcePayload", - "description": "Autogenerated return type of CreateMigrationSource", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "migrationSource","args": [], - "type": { - "kind": "OBJECT", - "name": "MigrationSource", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateProjectInput", - "description": "Autogenerated input type of CreateProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "template","type": { - "kind": "ENUM", - "name": "ProjectTemplate", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateProjectPayload", - "description": "Autogenerated return type of CreateProject", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateProjectV2FieldInput", - "description": "Autogenerated input type of CreateProjectV2Field", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "dataType","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2CustomFieldType", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "singleSelectOptions","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2SingleSelectFieldOptionInput", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateProjectV2FieldPayload", - "description": "Autogenerated return type of CreateProjectV2Field", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2Field","args": [], - "type": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateProjectV2Input", - "description": "Autogenerated input type of CreateProjectV2", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "teamId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateProjectV2Payload", - "description": "Autogenerated return type of CreateProjectV2", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreatePullRequestInput", - "description": "Autogenerated input type of CreatePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "baseRefName","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "headRefName","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "headRepositoryId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "maintainerCanModify","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "draft","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatePullRequestPayload", - "description": "Autogenerated return type of CreatePullRequest", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateRefInput", - "description": "Autogenerated input type of CreateRef", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "oid","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateRefPayload", - "description": "Autogenerated return type of CreateRef", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateRepositoryInput", - "description": "Autogenerated input type of CreateRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "visibility","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "template","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "homepageUrl","type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasWikiEnabled","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "hasIssuesEnabled","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "teamId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateRepositoryPayload", - "description": "Autogenerated return type of CreateRepository", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateRepositoryRulesetInput", - "description": "Autogenerated input type of CreateRepositoryRuleset", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sourceId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "target","type": { - "kind": "ENUM", - "name": "RepositoryRulesetTarget", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "rules","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleInput", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "conditions","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleConditionsInput", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "enforcement","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RuleEnforcement", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "bypassActors","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRulesetBypassActorInput", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateRepositoryRulesetPayload", - "description": "Autogenerated return type of CreateRepositoryRuleset", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ruleset","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorsListingInput", - "description": "Autogenerated input type of CreateSponsorsListing", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "fiscalHostLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "fiscallyHostedProjectProfileUrl","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "billingCountryOrRegionCode","type": { - "kind": "ENUM", - "name": "SponsorsCountryOrRegionCode", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "residenceCountryOrRegionCode","type": { - "kind": "ENUM", - "name": "SponsorsCountryOrRegionCode", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "contactEmail","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "fullDescription","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateSponsorsListingPayload", - "description": "Autogenerated return type of CreateSponsorsListing", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsListing","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorsTierInput", - "description": "Autogenerated input type of CreateSponsorsTier", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "amount","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "isRecurring","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "repositoryId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryOwnerLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryName","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "welcomeMessage","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "publish","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateSponsorsTierPayload", - "description": "Autogenerated return type of CreateSponsorsTier", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsTier","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorshipInput", - "description": "Autogenerated input type of CreateSponsorship", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "tierId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "amount","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isRecurring","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "receiveEmails","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "privacyLevel","type": { - "kind": "ENUM", - "name": "SponsorshipPrivacy", - "ofType": None - }, - "defaultValue": "PUBLIC" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateSponsorshipPayload", - "description": "Autogenerated return type of CreateSponsorship", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorship","args": [], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorshipsInput", - "description": "Autogenerated input type of CreateSponsorships", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorLogin","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "sponsorships","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BulkSponsorship", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "receiveEmails","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "privacyLevel","type": { - "kind": "ENUM", - "name": "SponsorshipPrivacy", - "ofType": None - }, - "defaultValue": "PUBLIC" - }, - { - "name": "recurring","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateSponsorshipsPayload", - "description": "Autogenerated return type of CreateSponsorships", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorables","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTeamDiscussionCommentInput", - "description": "Autogenerated input type of CreateTeamDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "discussionId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateTeamDiscussionCommentPayload", - "description": "Autogenerated return type of CreateTeamDiscussionComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamDiscussionComment","args": [], - "type": { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTeamDiscussionInput", - "description": "Autogenerated input type of CreateTeamDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "teamId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "private","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateTeamDiscussionPayload", - "description": "Autogenerated return type of CreateTeamDiscussion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamDiscussion","args": [], - "type": { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateUserListInput", - "description": "Autogenerated input type of CreateUserList", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isPrivate","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreateUserListPayload", - "description": "Autogenerated return type of CreateUserList", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "list","args": [], - "type": { - "kind": "OBJECT", - "name": "UserList", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedCommitContribution", - "description": "Represents the contribution a user made by committing to a repository.", - "fields": [ - { - "name": "commitCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isRestricted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "occurredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Contribution", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedCommitContributionConnection", - "description": "The connection type for CreatedCommitContribution.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedCommitContributionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedCommitContribution", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedCommitContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CreatedCommitContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedIssueContribution", - "description": "Represents the contribution a user made on GitHub by opening an issue.", - "fields": [ - { - "name": "isRestricted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "occurredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Contribution", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedIssueContributionConnection", - "description": "The connection type for CreatedIssueContribution.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedIssueContributionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedIssueContribution", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedIssueContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CreatedIssueContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "CreatedIssueOrRestrictedContribution", - "description": "Represents either a issue the viewer can access or a restricted contribution.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CreatedIssueContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RestrictedContribution", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestContribution", - "description": "Represents the contribution a user made on GitHub by opening a pull request.", - "fields": [ - { - "name": "isRestricted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "occurredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Contribution", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionConnection", - "description": "The connection type for CreatedPullRequestContribution.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestContribution", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CreatedPullRequestContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "CreatedPullRequestOrRestrictedContribution", - "description": "Represents either a pull request the viewer can access or a restricted contribution.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CreatedPullRequestContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RestrictedContribution", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContribution", - "description": "Represents the contribution a user made by leaving a review on a pull request.", - "fields": [ - { - "name": "isRestricted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "occurredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReview","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Contribution", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionConnection", - "description": "The connection type for CreatedPullRequestReviewContribution.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContribution", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedRepositoryContribution", - "description": "Represents the contribution a user made on GitHub by creating a repository.", - "fields": [ - { - "name": "isRestricted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "occurredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Contribution", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedRepositoryContributionConnection", - "description": "The connection type for CreatedRepositoryContribution.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedRepositoryContributionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedRepositoryContribution", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "CreatedRepositoryContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "CreatedRepositoryContribution", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "CreatedRepositoryOrRestrictedContribution", - "description": "Represents either a repository the viewer can access or a restricted contribution.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CreatedRepositoryContribution", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RestrictedContribution", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "CrossReferencedEvent", - "description": "Represents a mention made by one issue or pull request to another.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCrossRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "referencedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "source","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ReferencedSubject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "target","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ReferencedSubject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "willCloseTarget","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "Date", - "description": "An ISO-8601 encoded date string.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "DateTime", - "description": "An ISO-8601 encoded UTC date string.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeclineTopicSuggestionInput", - "description": "Autogenerated input type of DeclineTopicSuggestion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "reason", - "type": { - "kind": "ENUM", - "name": "TopicSuggestionDeclineReason", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeclineTopicSuggestionPayload", - "description": "Autogenerated return type of DeclineTopicSuggestion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topic","args": [], - "type": { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - }, - "isDeprecated": True, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DefaultRepositoryPermissionField", - "description": "The possible base permissions for repositories.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "READ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WRITE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "description": "Entities that can be deleted.", - "fields": [ - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "GistComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteBranchProtectionRuleInput", - "description": "Autogenerated input type of DeleteBranchProtectionRule", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "branchProtectionRuleId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteBranchProtectionRulePayload", - "description": "Autogenerated return type of DeleteBranchProtectionRule", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteDeploymentInput", - "description": "Autogenerated input type of DeleteDeployment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteDeploymentPayload", - "description": "Autogenerated return type of DeleteDeployment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteDiscussionCommentInput", - "description": "Autogenerated input type of DeleteDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteDiscussionCommentPayload", - "description": "Autogenerated return type of DeleteDiscussionComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comment","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteDiscussionInput", - "description": "Autogenerated input type of DeleteDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteDiscussionPayload", - "description": "Autogenerated return type of DeleteDiscussion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteEnvironmentInput", - "description": "Autogenerated input type of DeleteEnvironment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteEnvironmentPayload", - "description": "Autogenerated return type of DeleteEnvironment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteIpAllowListEntryInput", - "description": "Autogenerated input type of DeleteIpAllowListEntry", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ipAllowListEntryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteIpAllowListEntryPayload", - "description": "Autogenerated return type of DeleteIpAllowListEntry", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListEntry","args": [], - "type": { - "kind": "OBJECT", - "name": "IpAllowListEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteIssueCommentInput", - "description": "Autogenerated input type of DeleteIssueComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteIssueCommentPayload", - "description": "Autogenerated return type of DeleteIssueComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteIssueInput", - "description": "Autogenerated input type of DeleteIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "issueId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteIssuePayload", - "description": "Autogenerated return type of DeleteIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelInput", - "description": "Autogenerated input type of DeleteLabel", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteLabelPayload", - "description": "Autogenerated return type of DeleteLabel", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteLinkedBranchInput", - "description": "Autogenerated input type of DeleteLinkedBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "linkedBranchId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteLinkedBranchPayload", - "description": "Autogenerated return type of DeleteLinkedBranch", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeletePackageVersionInput", - "description": "Autogenerated input type of DeletePackageVersion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "packageVersionId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeletePackageVersionPayload", - "description": "Autogenerated return type of DeletePackageVersion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "success","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectCardInput", - "description": "Autogenerated input type of DeleteProjectCard", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "cardId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteProjectCardPayload", - "description": "Autogenerated return type of DeleteProjectCard", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "column","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectColumn", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletedCardId","args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectColumnInput", - "description": "Autogenerated input type of DeleteProjectColumn", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "columnId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteProjectColumnPayload", - "description": "Autogenerated return type of DeleteProjectColumn", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletedColumnId","args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectInput", - "description": "Autogenerated input type of DeleteProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteProjectPayload", - "description": "Autogenerated return type of DeleteProject", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "INTERFACE", - "name": "ProjectOwner", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2FieldInput", - "description": "Autogenerated input type of DeleteProjectV2Field", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "fieldId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteProjectV2FieldPayload", - "description": "Autogenerated return type of DeleteProjectV2Field", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2Field","args": [], - "type": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2Input", - "description": "Autogenerated input type of DeleteProjectV2", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2ItemInput", - "description": "Autogenerated input type of DeleteProjectV2Item", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "itemId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteProjectV2ItemPayload", - "description": "Autogenerated return type of DeleteProjectV2Item", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletedItemId","args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteProjectV2Payload", - "description": "Autogenerated return type of DeleteProjectV2", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2WorkflowInput", - "description": "Autogenerated input type of DeleteProjectV2Workflow", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "workflowId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteProjectV2WorkflowPayload", - "description": "Autogenerated return type of DeleteProjectV2Workflow", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletedWorkflowId","args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeletePullRequestReviewCommentInput", - "description": "Autogenerated input type of DeletePullRequestReviewComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeletePullRequestReviewCommentPayload", - "description": "Autogenerated return type of DeletePullRequestReviewComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReview","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReviewComment","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeletePullRequestReviewInput", - "description": "Autogenerated input type of DeletePullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeletePullRequestReviewPayload", - "description": "Autogenerated return type of DeletePullRequestReview", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReview","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteRefInput", - "description": "Autogenerated input type of DeleteRef", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "refId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteRefPayload", - "description": "Autogenerated return type of DeleteRef", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteRepositoryRulesetInput", - "description": "Autogenerated input type of DeleteRepositoryRuleset", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryRulesetId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteRepositoryRulesetPayload", - "description": "Autogenerated return type of DeleteRepositoryRuleset", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamDiscussionCommentInput", - "description": "Autogenerated input type of DeleteTeamDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteTeamDiscussionCommentPayload", - "description": "Autogenerated return type of DeleteTeamDiscussionComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamDiscussionInput", - "description": "Autogenerated input type of DeleteTeamDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteTeamDiscussionPayload", - "description": "Autogenerated return type of DeleteTeamDiscussion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteUserListInput", - "description": "Autogenerated input type of DeleteUserList", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "listId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteUserListPayload", - "description": "Autogenerated return type of DeleteUserList", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteVerifiableDomainInput", - "description": "Autogenerated input type of DeleteVerifiableDomain", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeleteVerifiableDomainPayload", - "description": "Autogenerated return type of DeleteVerifiableDomain", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "UNION", - "name": "VerifiableDomainOwner", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DemilestonedEvent", - "description": "Represents a 'demilestoned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "milestoneTitle","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "MilestoneItem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DependabotUpdate", - "description": "A Dependabot Update for a dependency in a repository", - "fields": [ - { - "name": "error","args": [], - "type": { - "kind": "OBJECT", - "name": "DependabotUpdateError", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DependabotUpdateError", - "description": "An error produced from a Dependabot Update", - "fields": [ - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "errorType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DependencyGraphDependency", - "description": "A dependency manifest entry", - "fields": [ - { - "name": "hasDependencies","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "packageLabel","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "`packageLabel` will be removed. Use normalized `packageName` field instead. Removal on 2022-10-01 UTC." - }, - { - "name": "packageManager","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "packageName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requirements","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DependencyGraphDependencyConnection", - "description": "The connection type for DependencyGraphDependency.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DependencyGraphDependencyEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DependencyGraphDependency", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DependencyGraphDependencyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DependencyGraphDependency", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DependencyGraphEcosystem", - "description": "The possible ecosystems of a dependency graph package.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "RUBYGEMS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NPM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PIP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MAVEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NUGET","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMPOSER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ACTIONS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RUST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUB","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SWIFT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DependencyGraphManifest", - "description": "Dependency manifest for a repository", - "fields": [ - { - "name": "blobPath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dependencies","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DependencyGraphDependencyConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dependenciesCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "exceedsMaxSize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "filename","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parseable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DependencyGraphManifestConnection", - "description": "The connection type for DependencyGraphManifest.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DependencyGraphManifestEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DependencyGraphManifest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DependencyGraphManifestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DependencyGraphManifest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeployKey", - "description": "A repository deploy key.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "key","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "readOnly","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "verified","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeployKeyConnection", - "description": "The connection type for DeployKey.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeployKeyEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeployKey", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeployKeyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DeployKey", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeployedEvent", - "description": "Represents a 'deployed' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployment","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Deployment", - "description": "Represents triggered deployment instance.", - "fields": [ - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitOid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environment","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "latestEnvironment","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "latestStatus","args": [], - "type": { - "kind": "OBJECT", - "name": "DeploymentStatus", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "originalEnvironment","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "payload","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "ENUM", - "name": "DeploymentState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "statuses","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeploymentStatusConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "task","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentConnection", - "description": "The connection type for Deployment.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentEnvironmentChangedEvent", - "description": "Represents a 'deployment_environment_changed' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deploymentStatus","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentStatus", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DeploymentOrder", - "description": "Ordering options for deployment connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DeploymentOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DeploymentOrderField", - "description": "Properties by which deployment connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentProtectionRule", - "description": "A protection rule.", - "fields": [ - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "preventSelfReview","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentReviewerConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "timeout","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "type","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DeploymentProtectionRuleType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentProtectionRuleConnection", - "description": "The connection type for DeploymentProtectionRule.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentProtectionRuleEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentProtectionRule", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentProtectionRuleEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DeploymentProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DeploymentProtectionRuleType", - "description": "The possible protection rule types.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "REQUIRED_REVIEWERS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WAIT_TIMER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentRequest", - "description": "A request to deploy a workflow run to an environment.", - "fields": [ - { - "name": "currentUserCanApprove","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environment","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Environment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentReviewerConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "waitTimer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "waitTimerStartedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentRequestConnection", - "description": "The connection type for DeploymentRequest.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentRequestEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentRequestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DeploymentRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentReview", - "description": "A deployment review.", - "fields": [ - { - "name": "comment","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnvironmentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DeploymentReviewState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentReviewConnection", - "description": "The connection type for DeploymentReview.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentReviewEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentReview", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentReviewEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DeploymentReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DeploymentReviewState", - "description": "The possible states for a deployment review.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "APPROVED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REJECTED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "DeploymentReviewer", - "description": "Users and teams.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "DeploymentReviewerConnection", - "description": "The connection type for DeploymentReviewer.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentReviewerEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "DeploymentReviewer", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentReviewerEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "DeploymentReviewer", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DeploymentState", - "description": "The possible states in which a deployment can be.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ABANDONED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ACTIVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DESTROYED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ERROR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILURE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INACTIVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUCCESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "QUEUED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN_PROGRESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WAITING","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentStatus", - "description": "Describes the status of a given deployment attempt.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployment","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environment","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environmentUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "logUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DeploymentStatusState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentStatusConnection", - "description": "The connection type for DeploymentStatus.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentStatusEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentStatus", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DeploymentStatusEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DeploymentStatus", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DeploymentStatusState", - "description": "The possible states for a deployment status.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUCCESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILURE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INACTIVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ERROR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "QUEUED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN_PROGRESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WAITING","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DequeuePullRequestInput", - "description": "Autogenerated input type of DequeuePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DequeuePullRequestPayload", - "description": "Autogenerated return type of DequeuePullRequest", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeQueueEntry","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueueEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DiffSide", - "description": "The possible sides of a diff.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LEFT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RIGHT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DisablePullRequestAutoMergeInput", - "description": "Autogenerated input type of DisablePullRequestAutoMerge", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DisablePullRequestAutoMergePayload", - "description": "Autogenerated return type of DisablePullRequestAutoMerge", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DisconnectedEvent", - "description": "Represents a 'disconnected' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCrossRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "source","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ReferencedSubject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ReferencedSubject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "description": "A discussion in a repository.", - "fields": [ - { - "name": "activeLockReason","args": [], - "type": { - "kind": "ENUM", - "name": "LockReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "answer","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "answerChosenAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "answerChosenBy","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "category","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCategory", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isAnswered","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labels","args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "LabelOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "locked","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "poll","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionPoll", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stateReason","args": [], - "type": { - "kind": "ENUM", - "name": "DiscussionStateReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "upvoteCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanClose","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReopen","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSubscribe","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpvote","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasUpvoted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerSubscription","args": [], - "type": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Closable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Labelable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Lockable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Votable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionCategory", - "description": "A category for discussions in a repository.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "emoji","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "emojiHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isAnswerable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "slug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionCategoryConnection", - "description": "The connection type for DiscussionCategory.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCategoryEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCategory", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionCategoryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionCategory", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DiscussionCloseReason", - "description": "The possible reasons for closing a discussion.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "RESOLVED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OUTDATED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DUPLICATE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "description": "A comment on a discussion.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isAnswer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMinimized","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizedReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "replies","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "replyTo","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "upvoteCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMarkAsAnswer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMinimize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUnmarkAsAnswer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpvote","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasUpvoted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Minimizable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Votable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionCommentConnection", - "description": "The connection type for DiscussionComment.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCommentEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionConnection", - "description": "The connection type for Discussion.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DiscussionOrder", - "description": "Ways in which lists of discussions can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DiscussionOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DiscussionOrderField", - "description": "Properties by which discussion connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionPoll", - "description": "A poll for a discussion.", - "fields": [ - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "options","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "How to order the options for the discussion poll.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DiscussionPollOptionOrder", - "ofType": None - }, - "defaultValue": "{field: AUTHORED_ORDER, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscussionPollOptionConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "question","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalVoteCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanVote","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasVoted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionPollOption", - "description": "An option for a discussion poll.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "option","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "poll","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionPoll", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalVoteCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasVoted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionPollOptionConnection", - "description": "The connection type for DiscussionPollOption.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionPollOptionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionPollOption", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DiscussionPollOptionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionPollOption", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DiscussionPollOptionOrder", - "description": "Ordering options for discussion poll option connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DiscussionPollOptionOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DiscussionPollOptionOrderField", - "description": "Properties by which discussion poll option connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "AUTHORED_ORDER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VOTE_COUNT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DiscussionState", - "description": "The possible states of a discussion.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DiscussionStateReason", - "description": "The possible state reasons of a discussion.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "RESOLVED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OUTDATED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DUPLICATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REOPENED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DismissPullRequestReviewInput", - "description": "Autogenerated input type of DismissPullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "message","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DismissPullRequestReviewPayload", - "description": "Autogenerated return type of DismissPullRequestReview", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReview","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "DismissReason", - "description": "The possible reasons that a Dependabot alert was dismissed.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "FIX_STARTED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NO_BANDWIDTH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TOLERABLE_RISK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INACCURATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NOT_USED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DismissRepositoryVulnerabilityAlertInput", - "description": "Autogenerated input type of DismissRepositoryVulnerabilityAlert", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryVulnerabilityAlertId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "dismissReason","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DismissReason", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DismissRepositoryVulnerabilityAlertPayload", - "description": "Autogenerated return type of DismissRepositoryVulnerabilityAlert", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryVulnerabilityAlert","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlert", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "DraftIssue", - "description": "A draft issue within a project.", - "fields": [ - { - "name": "assignees","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2Items","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsV2","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DraftPullRequestReviewComment", - "description": "Specifies a review comment to be left with a Pull Request Review.", - "fields": None, - "inputFields": [ - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "position","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "DraftPullRequestReviewThread", - "description": "Specifies a review comment thread to be left with a Pull Request Review.", - "fields": None, - "inputFields": [ - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "line","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "side","type": { - "kind": "ENUM", - "name": "DiffSide", - "ofType": None - }, - "defaultValue": "RIGHT" - }, - { - "name": "startLine","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "startSide","type": { - "kind": "ENUM", - "name": "DiffSide", - "ofType": None - }, - "defaultValue": "RIGHT" - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnablePullRequestAutoMergeInput", - "description": "Autogenerated input type of EnablePullRequestAutoMerge", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "commitHeadline","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "commitBody","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "mergeMethod","type": { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "ofType": None - }, - "defaultValue": "MERGE" - }, - { - "name": "authorEmail","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "expectedHeadOid","type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnablePullRequestAutoMergePayload", - "description": "Autogenerated return type of EnablePullRequestAutoMerge", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnqueuePullRequestInput", - "description": "Autogenerated input type of EnqueuePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "jump","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "expectedHeadOid","type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnqueuePullRequestPayload", - "description": "Autogenerated return type of EnqueuePullRequest", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeQueueEntry","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueueEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Enterprise", - "description": "An account to manage multiple organizations with consolidated policy and billing.", - "fields": [ - { - "name": "announcement","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "announcementExpiresAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "announcementUserDismissible","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "billingEmail","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "billingInfo", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseBillingInfo", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "descriptionHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "location","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "members","args": [ - { - "name": "organizationLogins", - "description": "Only return members within the organizations with these logins", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for members returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseMemberOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "role", - "description": "The role of the user in the enterprise organization or server.", - "type": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "deployment", - "description": "Only return members within the selected GitHub Enterprise deployment", - "type": { - "kind": "ENUM", - "name": "EnterpriseUserDeployment", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasTwoFactorEnabled", - "description": "Only return members with this two-factor authentication status. Does not include members who only have an account on a GitHub Enterprise Server instance.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseMemberConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizations","args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "viewerOrganizationRole", - "description": "The viewer's role in an organization.", - "type": { - "kind": "ENUM", - "name": "RoleInOrganization", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ownerInfo","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseOwnerInfo", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "slug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerIsAdmin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "websiteUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AnnouncementBanner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorEdge", - "description": "A User who is an administrator of an enterprise.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "role","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "description": "An invitation for a user to become an owner or billing manager of an enterprise.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitee","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "inviter","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "role","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitationConnection", - "description": "The connection type for EnterpriseAdministratorInvitation.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseAdministratorInvitationOrder", - "description": "Ordering options for enterprise administrator invitation connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseAdministratorInvitationOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseAdministratorInvitationOrderField", - "description": "Properties by which enterprise administrator invitation connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "description": "The possible administrator roles in an enterprise account.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OWNER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BILLING_MANAGER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", - "description": "The possible values for the enterprise allow private repository forking policy value.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ENTERPRISE_ORGANIZATIONS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SAME_ORGANIZATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SAME_ORGANIZATION_USER_ACCOUNTS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "USER_ACCOUNTS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EVERYWHERE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "description": "Metadata for an audit entry containing enterprise account information.", - "fields": [ - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposClearAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteToBusinessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeEnableAuditEntry", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "EnterpriseBillingInfo", - "description": "Enterprise billing information visible to enterprise billing managers and owners.", - "fields": [ - { - "name": "allLicensableUsersCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assetPacks","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bandwidthQuota","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bandwidthUsage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bandwidthUsagePercentage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "storageQuota","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "storageUsage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "storageUsagePercentage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalAvailableLicenses","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalLicenses","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseConnection", - "description": "The connection type for Enterprise.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseDefaultRepositoryPermissionSettingValue", - "description": "The possible values for the enterprise base repository permission setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NO_POLICY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WRITE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "READ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "description": "The possible values for an enabled/disabled enterprise setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ENABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NO_POLICY","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseEnabledSettingValue", - "description": "The possible values for an enabled/no policy enterprise setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ENABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NO_POLICY","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseFailedInvitationConnection", - "description": "The connection type for OrganizationInvitation.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseFailedInvitationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalUniqueUserCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseFailedInvitationEdge", - "description": "A failed invitation to be a member in an enterprise organization.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseIdentityProvider", - "description": "An identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", - "fields": [ - { - "name": "digestMethod","args": [], - "type": { - "kind": "ENUM", - "name": "SamlDigestAlgorithm", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "externalIdentities","args": [ - { - "name": "membersOnly", - "description": "Filter to external identities with valid org membership only", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "login", - "description": "Filter to external identities with the users login", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userName", - "description": "Filter to external identities with the users userName/NameID attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ExternalIdentityConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "idpCertificate","args": [], - "type": { - "kind": "SCALAR", - "name": "X509Certificate", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issuer","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "recoveryCodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signatureMethod","args": [], - "type": { - "kind": "ENUM", - "name": "SamlSignatureAlgorithm", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ssoUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "EnterpriseMember", - "description": "An object that is a member of an enterprise.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "EnterpriseUserAccount", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "EnterpriseMemberConnection", - "description": "The connection type for EnterpriseMember.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseMemberEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "EnterpriseMember", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseMemberEdge", - "description": "A User who is a member of an enterprise through one or more organizations.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "EnterpriseMember", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseMemberOrder", - "description": "Ordering options for enterprise member connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseMemberOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseMemberOrderField", - "description": "Properties by which enterprise member connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LOGIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", - "description": "The possible values for the enterprise members can create repositories setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NO_POLICY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseMembersCanMakePurchasesSettingValue", - "description": "The possible values for the members can make purchases setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ENABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseMembershipType", - "description": "The possible values we have for filtering Platform::Objects::User#enterprises.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BILLING_MANAGER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ORG_MEMBERSHIP","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseOrder", - "description": "Ordering options for enterprises.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseOrderField", - "description": "Properties by which enterprise connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseOrganizationMembershipConnection", - "description": "The connection type for Organization.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseOrganizationMembershipEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseOrganizationMembershipEdge", - "description": "An enterprise organization that a user is a member of.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "role","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseOutsideCollaboratorConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseOutsideCollaboratorEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseOutsideCollaboratorEdge", - "description": "A User who is an outside collaborator of an enterprise through one or more organizations.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositories","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": "{field: NAME, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfoConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseOwnerInfo", - "description": "Enterprise information visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", - "fields": [ - { - "name": "admins","args": [ - { - "name": "organizationLogins", - "description": "Only return members within the organizations with these logins", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "role", - "description": "The role to filter by.", - "type": { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for administrators returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseMemberOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "hasTwoFactorEnabled", - "description": "Only return administrators with this two-factor authentication status.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "affiliatedUsersWithTwoFactorDisabled","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "affiliatedUsersWithTwoFactorDisabledExist","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "allowPrivateRepositoryForkingSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "allowPrivateRepositoryForkingSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "allowPrivateRepositoryForkingSettingPolicyValue","args": [], - "type": { - "kind": "ENUM", - "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "defaultRepositoryPermissionSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseDefaultRepositoryPermissionSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "defaultRepositoryPermissionSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The permission to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DefaultRepositoryPermissionField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "domains","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isVerified", - "description": "Filter whether or not the domain is verified.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "isApproved", - "description": "Filter whether or not the domain is approved.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "orderBy", - "description": "Ordering options for verifiable domains returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "VerifiableDomainOrder", - "ofType": None - }, - "defaultValue": "{field: DOMAIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "VerifiableDomainConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseServerInstallations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "connectedOnly", - "description": "Whether or not to only return installations discovered via GitHub Connect.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orderBy", - "description": "Ordering options for Enterprise Server installations returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerInstallationOrder", - "ofType": None - }, - "defaultValue": "{field: HOST_NAME, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "failedInvitations","args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseFailedInvitationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListEnabledSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListEnabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListEntries","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for IP allow list entries returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IpAllowListEntryOrder", - "ofType": None - }, - "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IpAllowListEntryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListForInstalledAppsEnabledSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListForInstalledAppsEnabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isUpdatingDefaultRepositoryPermission","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isUpdatingTwoFactorRequirement","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanChangeRepositoryVisibilitySetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanChangeRepositoryVisibilitySettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanCreateInternalRepositoriesSetting","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanCreatePrivateRepositoriesSetting","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanCreatePublicRepositoriesSetting","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanCreateRepositoriesSetting","args": [], - "type": { - "kind": "ENUM", - "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanCreateRepositoriesSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrganizationMembersCanCreateRepositoriesSettingValue", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanDeleteIssuesSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanDeleteIssuesSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanDeleteRepositoriesSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanDeleteRepositoriesSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanInviteCollaboratorsSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanInviteCollaboratorsSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanMakePurchasesSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseMembersCanMakePurchasesSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanUpdateProtectedBranchesSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanUpdateProtectedBranchesSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanViewDependencyInsightsSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanViewDependencyInsightsSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "notificationDeliveryRestrictionEnabledSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "NotificationRestrictionSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oidcProvider","args": [], - "type": { - "kind": "OBJECT", - "name": "OIDCProvider", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationProjectsSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationProjectsSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "outsideCollaborators","args": [ - { - "name": "login", - "description": "The login of one specific outside collaborator.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for outside collaborators returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseMemberOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "visibility", - "description": "Only return outside collaborators on repositories with this visibility.", - "type": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasTwoFactorEnabled", - "description": "Only return outside collaborators with this two-factor authentication status.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "organizationLogins", - "description": "Only return outside collaborators within the organizations with these logins", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseOutsideCollaboratorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pendingAdminInvitations","args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pending enterprise administrator invitations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseAdministratorInvitationOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - }, - { - "name": "role", - "description": "The role to filter by.", - "type": { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pendingCollaboratorInvitations","args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pending repository collaborator invitations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryInvitationOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryInvitationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pendingMemberInvitations","args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationLogins", - "description": "Only return invitations within the organizations with these logins", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "invitationSource", - "description": "Only return invitations matching this invitation source", - "type": { - "kind": "ENUM", - "name": "OrganizationInvitationSource", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterprisePendingMemberInvitationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryProjectsSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryProjectsSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "samlIdentityProvider","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseIdentityProvider", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "samlIdentityProviderSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IdentityProviderConfigurationState", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "supportEntitlements","args": [ - { - "name": "orderBy", - "description": "Ordering options for support entitlement users returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseMemberOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseMemberConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamDiscussionsSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamDiscussionsSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "twoFactorRequiredSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "twoFactorRequiredSettingOrganizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterprisePendingMemberInvitationConnection", - "description": "The connection type for OrganizationInvitation.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterprisePendingMemberInvitationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalUniqueUserCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterprisePendingMemberInvitationEdge", - "description": "An invitation to be a member in an enterprise organization.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfo", - "description": "A subset of repository information queryable from an enterprise.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPrivate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nameWithOwner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfoConnection", - "description": "The connection type for EnterpriseRepositoryInfo.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfoEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfoEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfo", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "description": "An Enterprise Server installation.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "customerName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hostName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isConnected","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userAccounts","args": [ - { - "name": "orderBy", - "description": "Ordering options for Enterprise Server user accounts returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userAccountsUploads","args": [ - { - "name": "orderBy", - "description": "Ordering options for Enterprise Server user accounts uploads returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountsUploadOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUploadConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationConnection", - "description": "The connection type for EnterpriseServerInstallation.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationMembershipConnection", - "description": "The connection type for EnterpriseServerInstallation.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationMembershipEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationMembershipEdge", - "description": "An Enterprise Server installation that a user is a member of.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "role","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerInstallationOrder", - "description": "Ordering options for Enterprise Server installation connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerInstallationOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseServerInstallationOrderField", - "description": "Properties by which Enterprise Server installation connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "HOST_NAME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CUSTOMER_NAME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccount", - "description": "A user account on an Enterprise Server installation.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "emails","args": [ - { - "name": "orderBy", - "description": "Ordering options for Enterprise Server user account emails returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountEmailOrder", - "ofType": None - }, - "defaultValue": "{field: EMAIL, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmailConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseServerInstallation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSiteAdmin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "profileName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "remoteCreatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "remoteUserId","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountConnection", - "description": "The connection type for EnterpriseServerUserAccount.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccount", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccount", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmail", - "description": "An email belonging to a user account on an Enterprise Server installation.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPrimary","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userAccount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccount", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmailConnection", - "description": "The connection type for EnterpriseServerUserAccountEmail.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmailEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmail", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmailEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmail", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountEmailOrder", - "description": "Ordering options for Enterprise Server user account email connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountEmailOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountEmailOrderField", - "description": "Properties by which Enterprise Server user account email connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "EMAIL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountOrder", - "description": "Ordering options for Enterprise Server user account connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountOrderField", - "description": "Properties by which Enterprise Server user account connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LOGIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REMOTE_CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUpload", - "description": "A user accounts upload from an Enterprise Server installation.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseServerInstallation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "syncState","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountsUploadSyncState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUploadConnection", - "description": "The connection type for EnterpriseServerUserAccountsUpload.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUploadEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUpload", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUploadEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUpload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountsUploadOrder", - "description": "Ordering options for Enterprise Server user accounts upload connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountsUploadOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountsUploadOrderField", - "description": "Properties by which Enterprise Server user accounts upload connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountsUploadSyncState", - "description": "Synchronization state of the Enterprise Server user accounts upload", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUCCESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILURE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseUserAccount", - "description": "An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.", - "fields": [ - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseInstallations","args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for installations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerInstallationOrder", - "ofType": None - }, - "defaultValue": "{field: HOST_NAME, direction: ASC}" - }, - { - "name": "role", - "description": "The role of the user in the installation.", - "type": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationMembershipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizations","args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for organizations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "role", - "description": "The role of the user in the enterprise organization.", - "type": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseOrganizationMembershipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "description": "The possible roles for enterprise membership.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MEMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OWNER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNAFFILIATED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnterpriseUserDeployment", - "description": "The possible GitHub Enterprise deployments where this user can exist.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CLOUD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SERVER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Environment", - "description": "An environment.", - "fields": [ - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "protectionRules","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentProtectionRuleConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnvironmentConnection", - "description": "The connection type for Environment.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnvironmentEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Environment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "EnvironmentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "EnvironmentOrderField", - "description": "Properties by which environments connections can be ordered", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "Environments", - "description": "Ordering options for environments", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnvironmentOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ExternalIdentity", - "description": "An external identity provisioned by SAML SSO or SCIM. If SAML is configured on the organization, the external identity is visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members. If SAML is configured on the enterprise, the external identity is visible to (1) enterprise owners, (2) enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", - "fields": [ - { - "name": "guid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationInvitation","args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "samlIdentity","args": [], - "type": { - "kind": "OBJECT", - "name": "ExternalIdentitySamlAttributes", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "scimIdentity","args": [], - "type": { - "kind": "OBJECT", - "name": "ExternalIdentityScimAttributes", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ExternalIdentityAttribute", - "description": "An attribute for the External Identity attributes collection", - "fields": [ - { - "name": "metadata","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "value","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ExternalIdentityConnection", - "description": "The connection type for ExternalIdentity.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ExternalIdentityEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ExternalIdentity", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ExternalIdentityEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ExternalIdentity", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ExternalIdentitySamlAttributes", - "description": "SAML attributes for the External Identity", - "fields": [ - { - "name": "attributes","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ExternalIdentityAttribute", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "emails","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserEmailMetadata", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "familyName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "givenName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "groups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nameId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "username","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ExternalIdentityScimAttributes", - "description": "SCIM attributes for the External Identity", - "fields": [ - { - "name": "emails","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserEmailMetadata", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "familyName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "givenName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "groups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "username","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "FileAddition", - "description": "A command to add a file at the given path with the given contents as part of a commit. Any existing file at that that path will be replaced.", - "fields": None, - "inputFields": [ - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "contents","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Base64String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "FileChanges", - "fields": None, - "inputFields": [ - { - "name": "deletions","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileDeletion", - "ofType": None - } - } - }, - "defaultValue": "[]" - }, - { - "name": "additions","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileAddition", - "ofType": None - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "FileDeletion", - "description": "A command to delete the file at the given path as part of a commit.", - "fields": None, - "inputFields": [ - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "FileViewedState", - "description": "The possible viewed states of a file .", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DISMISSED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VIEWED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNVIEWED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "Represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "FollowOrganizationInput", - "description": "Autogenerated input type of FollowOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "FollowOrganizationPayload", - "description": "Autogenerated return type of FollowOrganization", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "FollowUserInput", - "description": "Autogenerated input type of FollowUser", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "FollowUserPayload", - "description": "Autogenerated return type of FollowUser", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "FollowerConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "FollowingConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "FundingLink", - "description": "A funding platform link for a repository.", - "fields": [ - { - "name": "platform","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "FundingPlatform", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "FundingPlatform", - "description": "The possible funding platforms for repository funding links.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "GITHUB","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PATREON","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OPEN_COLLECTIVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KO_FI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TIDELIFT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMUNITY_BRIDGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LIBERAPAY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ISSUEHUNT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LFX_CROWDFUNDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "POLAR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BUY_ME_A_COFFEE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CUSTOM","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GenericHovercardContext", - "description": "A generic hovercard context with a message and icon", - "fields": [ - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "octicon","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "HovercardContext", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Gist", - "description": "A Gist.", - "fields": [ - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GistCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "files","args": [ - { - "name": "limit", - "description": "The maximum number of files to return.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "10" - }, - { - "name": "oid", - "description": "The oid of the files to return", - "type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GistFile", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "forks","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for gists returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "GistOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GistConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isFork","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPublic","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pushedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stargazerCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stargazers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "StarOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StargazerConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasStarred","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Starrable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GistComment", - "description": "Represents a comment on an Gist.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "gist","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Gist", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMinimized","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizedReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMinimize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Minimizable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GistCommentConnection", - "description": "The connection type for GistComment.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GistCommentEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GistComment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GistCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "GistComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GistConnection", - "description": "The connection type for Gist.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GistEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Gist", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GistEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Gist", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GistFile", - "description": "A file in a gist.", - "fields": [ - { - "name": "encodedName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "encoding","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "extension","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isImage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isTruncated","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "language","args": [], - "type": { - "kind": "OBJECT", - "name": "Language", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "size","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "text","args": [ - { - "name": "truncate", - "description": "Optionally truncate the returned file to this length.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "GistOrder", - "description": "Ordering options for gist connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "GistOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "GistOrderField", - "description": "Properties by which gist connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUSHED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "GistPrivacy", - "description": "The privacy of a Gist", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SECRET","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GitActor", - "description": "Represents an actor in a Git commit (ie. an author or committer).", - "fields": [ - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "date","args": [], - "type": { - "kind": "SCALAR", - "name": "GitTimestamp", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GitActorConnection", - "description": "The connection type for GitActor.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GitActorEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GitActor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GitActorEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "GitActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GitHubMetadata", - "description": "Represents information about the GitHub instance.", - "fields": [ - { - "name": "gitHubServicesSha","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "gitIpAddresses","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "githubEnterpriseImporterIpAddresses","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hookIpAddresses","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "importerIpAddresses","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPasswordAuthenticationVerifiable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pagesIpAddresses","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "GitObject", - "description": "Represents a Git object.", - "fields": [ - { - "name": "abbreviatedOid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Blob", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Tag", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Tree", - "ofType": None - } - ] - }, - { - "kind": "SCALAR", - "name": "GitObjectID", - "description": "A Git object ID.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "GitRefname", - "description": "A fully qualified reference name (e.g. `refs/heads/master`).", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "GitSSHRemote", - "description": "Git SSH string", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "GitSignature", - "description": "Information about a signature (GPG or S/MIME) on a Commit or Tag.", - "fields": [ - { - "name": "email","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isValid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "payload","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signature","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "GitSignatureState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "wasSignedByGitHub","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "GpgSignature", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SmimeSignature", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SshSignature", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnknownSignature", - "ofType": None - } - ] - }, - { - "kind": "ENUM", - "name": "GitSignatureState", - "description": "The state of a Git signature.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "VALID","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INVALID","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MALFORMED_SIG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNKNOWN_KEY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BAD_EMAIL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNVERIFIED_EMAIL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NO_USER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNKNOWN_SIG_TYPE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNSIGNED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GPGVERIFY_UNAVAILABLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GPGVERIFY_ERROR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NOT_SIGNING_KEY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EXPIRED_KEY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OCSP_PENDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OCSP_ERROR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BAD_CERT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OCSP_REVOKED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "GitTimestamp", - "description": "An ISO-8601 encoded date string. Unlike the DateTime type, GitTimestamp is not converted in UTC.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GpgSignature", - "description": "Represents a GPG signature on a Commit or Tag.", - "fields": [ - { - "name": "email","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isValid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "keyId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "payload","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signature","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "GitSignatureState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "wasSignedByGitHub","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "GitSignature", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "GrantEnterpriseOrganizationsMigratorRoleInput", - "description": "Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "login","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GrantEnterpriseOrganizationsMigratorRolePayload", - "description": "Autogenerated return type of GrantEnterpriseOrganizationsMigratorRole", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "GrantMigratorRoleInput", - "description": "Autogenerated input type of GrantMigratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "actor","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "actorType","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ActorType", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "GrantMigratorRolePayload", - "description": "Autogenerated return type of GrantMigratorRole", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "success","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "HTML", - "description": "A string containing HTML code.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "HeadRefDeletedEvent", - "description": "Represents a 'head_ref_deleted' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headRef","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headRefName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "HeadRefForcePushedEvent", - "description": "Represents a 'head_ref_force_pushed' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "afterCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "beforeCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "HeadRefRestoredEvent", - "description": "Represents a 'head_ref_restored' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Hovercard", - "description": "Detail needed to display a hovercard for a user", - "fields": [ - { - "name": "contexts","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "HovercardContext", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "HovercardContext", - "description": "An individual line of a hovercard", - "fields": [ - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "octicon","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "GenericHovercardContext", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrganizationTeamsHovercardContext", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrganizationsHovercardContext", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewStatusHovercardContext", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ViewerHovercardContext", - "ofType": None - } - ] - }, - { - "kind": "SCALAR", - "name": "ID", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IdentityProviderConfigurationState", - "description": "The possible states in which authentication can be configured with an identity provider.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ENFORCED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONFIGURED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNCONFIGURED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportProjectInput", - "description": "Autogenerated input type of ImportProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerName","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "public","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "columnImports","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectColumnImport", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ImportProjectPayload", - "description": "Autogenerated return type of ImportProject", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "InviteEnterpriseAdminInput", - "description": "Autogenerated input type of InviteEnterpriseAdmin", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "invitee","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "email","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "role","type": { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "InviteEnterpriseAdminPayload", - "description": "Autogenerated return type of InviteEnterpriseAdmin", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitation","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IpAllowListEnabledSettingValue", - "description": "The possible values for the IP allow list enabled setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ENABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IpAllowListEntry", - "description": "An IP address or range of addresses that is allowed to access an owner's resources.", - "fields": [ - { - "name": "allowListValue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isActive","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "IpAllowListOwner", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IpAllowListEntryConnection", - "description": "The connection type for IpAllowListEntry.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IpAllowListEntryEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IpAllowListEntry", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IpAllowListEntryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "IpAllowListEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "IpAllowListEntryOrder", - "description": "Ordering options for IP allow list entry connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListEntryOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IpAllowListEntryOrderField", - "description": "Properties by which IP allow list entry connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ALLOW_LIST_VALUE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IpAllowListForInstalledAppsEnabledSettingValue", - "description": "The possible values for the IP allow list configuration for installed GitHub Apps setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ENABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "IpAllowListOwner", - "description": "Types that can own an IP allow list.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "Issue", - "description": "An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.", - "fields": [ - { - "name": "activeLockReason","args": [], - "type": { - "kind": "ENUM", - "name": "LockReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assignees","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comments","args": [ - { - "name": "orderBy", - "description": "Ordering options for issue comments returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueCommentOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDatabaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hovercard","args": [ - { - "name": "includeNotificationContexts", - "description": "Whether or not to include notification contexts", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Hovercard", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPinned","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isReadByViewer","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labels","args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "LabelOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "linkedBranches","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "LinkedBranchConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "locked","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "milestone","args": [], - "type": { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "participants","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectCards","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "archivedStates", - "description": "A list of archived states to filter the cards by", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectCardArchivedState", - "ofType": None - } - }, - "defaultValue": "[ARCHIVED, NOT_ARCHIVED]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCardConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectItems","args": [ - { - "name": "includeArchived", - "description": "Include archived items.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsV2","args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "ofType": None - }, - "defaultValue": "{field: NUMBER, direction: DESC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stateReason","args": [], - "type": { - "kind": "ENUM", - "name": "IssueStateReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "timeline","args": [ - { - "name": "since", - "description": "Allows filtering timeline events by a `since` timestamp.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueTimelineConnection", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "`timeline` will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC." - }, - { - "name": "timelineItems","args": [ - { - "name": "since", - "description": "Filter timeline items by a `since` timestamp.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "skip", - "description": "Skips the first _n_ elements in the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "itemTypes", - "description": "Filter timeline items by type.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueTimelineItemsItemType", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueTimelineItemsConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "titleHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "trackedInIssues","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "trackedIssues","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "trackedIssuesCount","args": [ - { - "name": "states", - "description": "Limit the count to tracked issues with the specified states.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TrackedIssueStates", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanClose","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReopen","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSubscribe","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerSubscription","args": [], - "type": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerThreadSubscriptionFormAction","args": [], - "type": { - "kind": "ENUM", - "name": "ThreadSubscriptionFormAction", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerThreadSubscriptionStatus","args": [], - "type": { - "kind": "ENUM", - "name": "ThreadSubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Assignable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Closable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Labelable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Lockable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Owner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "SubscribableThread", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IssueClosedStateReason", - "description": "The possible state reasons of a closed issue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "COMPLETED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NOT_PLANNED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "description": "Represents a comment on an Issue.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDatabaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMinimized","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizedReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMinimize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Minimizable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueCommentConnection", - "description": "The connection type for IssueComment.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueCommentEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "IssueCommentOrder", - "description": "Ways in which lists of issue comments can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueCommentOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IssueCommentOrderField", - "description": "Properties by which issue comment connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueConnection", - "description": "The connection type for Issue.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueContributionsByRepository", - "description": "This aggregates issues opened by a user within one repository.", - "fields": [ - { - "name": "contributions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "ofType": None - }, - "defaultValue": "{direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedIssueContributionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "IssueFilters", - "description": "Ways in which to filter lists of issues.", - "fields": None, - "inputFields": [ - { - "name": "assignee","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "createdBy","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labels","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "mentioned","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "milestone","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "milestoneNumber","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "since","type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "states","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "viewerSubscribed","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "IssueOrPullRequest", - "description": "Used for return value of Repository.issueOrPullRequest.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "description": "Ways in which lists of issues can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IssueOrderField", - "description": "Properties by which issue connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMENTS","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IssueState", - "description": "The possible states of an issue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IssueStateReason", - "description": "The possible state reasons of an issue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "REOPENED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NOT_PLANNED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMPLETED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueTemplate", - "description": "A repository issue template.", - "fields": [ - { - "name": "about","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assignees","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "filename","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labels","args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "LabelOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueTimelineConnection", - "description": "The connection type for IssueTimelineItem.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueTimelineItemEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "IssueTimelineItem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "IssueTimelineItem", - "description": "An item in an issue timeline", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AssignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ClosedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CrossReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DemilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RenamedTitleEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReopenedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TransferredEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnassignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnsubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UserBlockedEvent", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "IssueTimelineItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "IssueTimelineItem", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "IssueTimelineItems", - "description": "An item in an issue timeline", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AddedToProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AssignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ClosedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommentDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConnectedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertedNoteToIssueEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertedToDiscussionEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CrossReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DemilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DisconnectedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MarkedAsDuplicateEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MentionedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MovedColumnsInProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PinnedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RemovedFromProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RenamedTitleEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReopenedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TransferredEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnassignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnmarkedAsDuplicateEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnpinnedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnsubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UserBlockedEvent", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "IssueTimelineItemsConnection", - "description": "The connection type for IssueTimelineItems.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueTimelineItemsEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "filteredCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "IssueTimelineItems", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "IssueTimelineItemsEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "IssueTimelineItems", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "IssueTimelineItemsItemType", - "description": "The possible item types found in a timeline.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ISSUE_COMMENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CROSS_REFERENCED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADDED_TO_PROJECT_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ASSIGNED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMENT_DELETED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONNECTED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONVERTED_NOTE_TO_ISSUE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONVERTED_TO_DISCUSSION_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DEMILESTONED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISCONNECTED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LABELED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LOCKED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MARKED_AS_DUPLICATE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MENTIONED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MILESTONED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MOVED_COLUMNS_IN_PROJECT_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PINNED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REFERENCED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REMOVED_FROM_PROJECT_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RENAMED_TITLE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REOPENED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIBED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TRANSFERRED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNASSIGNED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNLABELED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNLOCKED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "USER_BLOCKED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNMARKED_AS_DUPLICATE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNPINNED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNSUBSCRIBED_EVENT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "JoinedGitHubContribution", - "description": "Represents a user signing up for a GitHub account.", - "fields": [ - { - "name": "isRestricted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "occurredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Contribution", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Label", - "description": "A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.", - "fields": [ - { - "name": "color","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDefault","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issues","args": [ - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the issues by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "filterBy", - "description": "Filtering options for issues returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueFilters", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequests","args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LabelConnection", - "description": "The connection type for Label.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "LabelEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LabelEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Label", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "LabelOrder", - "description": "Ways in which lists of labels can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "LabelOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "LabelOrderField", - "description": "Properties by which label connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Labelable", - "description": "An object that can have labels assigned to it.", - "fields": [ - { - "name": "labels","args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "LabelOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "LabeledEvent", - "description": "Represents a 'labeled' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "label","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labelable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Labelable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Language", - "description": "Represents a given language found in repositories.", - "fields": [ - { - "name": "color","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LanguageConnection", - "description": "A list of languages associated with the parent.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "LanguageEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Language", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalSize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LanguageEdge", - "description": "Represents the language of a repository.", - "fields": [ - { - "name": "cursor", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Language", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "size","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "LanguageOrder", - "description": "Ordering options for language connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "LanguageOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "LanguageOrderField", - "description": "Properties by which language connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "SIZE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "License", - "description": "A repository's open source license", - "fields": [ - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "conditions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "LicenseRule", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "featured","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hidden","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "implementation","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "key","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "limitations","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "LicenseRule", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nickname","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permissions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "LicenseRule", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pseudoLicense","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "spdxId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LicenseRule", - "description": "Describes a License's conditions, permissions, and limitations", - "fields": [ - { - "name": "description","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "key","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "label","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "LinkProjectV2ToRepositoryInput", - "description": "Autogenerated input type of LinkProjectV2ToRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LinkProjectV2ToRepositoryPayload", - "description": "Autogenerated return type of LinkProjectV2ToRepository", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "LinkProjectV2ToTeamInput", - "description": "Autogenerated input type of LinkProjectV2ToTeam", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "teamId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LinkProjectV2ToTeamPayload", - "description": "Autogenerated return type of LinkProjectV2ToTeam", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "LinkRepositoryToProjectInput", - "description": "Autogenerated input type of LinkRepositoryToProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LinkRepositoryToProjectPayload", - "description": "Autogenerated return type of LinkRepositoryToProject", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LinkedBranch", - "description": "A branch linked to an issue.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LinkedBranchConnection", - "description": "A list of branches linked to an issue.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "LinkedBranchEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "LinkedBranch", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LinkedBranchEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "LinkedBranch", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "LockLockableInput", - "description": "Autogenerated input type of LockLockable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "lockableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "lockReason","type": { - "kind": "ENUM", - "name": "LockReason", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "LockLockablePayload", - "description": "Autogenerated return type of LockLockable", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockedRecord","args": [], - "type": { - "kind": "INTERFACE", - "name": "Lockable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "LockReason", - "description": "The possible reasons that an issue or pull request was locked.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OFF_TOPIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TOO_HEATED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RESOLVED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SPAM","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Lockable", - "description": "An object that can be locked.", - "fields": [ - { - "name": "activeLockReason","args": [], - "type": { - "kind": "ENUM", - "name": "LockReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "locked","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "LockedEvent", - "description": "Represents a 'locked' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockReason","args": [], - "type": { - "kind": "ENUM", - "name": "LockReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Lockable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Mannequin", - "description": "A placeholder user for attribution of imported data on GitHub.", - "fields": [ - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "claimant","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MannequinConnection", - "description": "A list of mannequins.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MannequinEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MannequinEdge", - "description": "Represents a mannequin.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MannequinOrder", - "description": "Ordering options for mannequins.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MannequinOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MannequinOrderField", - "description": "Properties by which mannequins can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LOGIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkDiscussionCommentAsAnswerInput", - "description": "Autogenerated input type of MarkDiscussionCommentAsAnswer", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarkDiscussionCommentAsAnswerPayload", - "description": "Autogenerated return type of MarkDiscussionCommentAsAnswer", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkFileAsViewedInput", - "description": "Autogenerated input type of MarkFileAsViewed", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarkFileAsViewedPayload", - "description": "Autogenerated return type of MarkFileAsViewed", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkNotificationAsDoneInput", - "description": "Autogenerated input type of MarkNotificationAsDone", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarkNotificationAsDonePayload", - "description": "Autogenerated return type of MarkNotificationAsDone", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "success","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkProjectV2AsTemplateInput", - "description": "Autogenerated input type of MarkProjectV2AsTemplate", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarkProjectV2AsTemplatePayload", - "description": "Autogenerated return type of MarkProjectV2AsTemplate", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkPullRequestReadyForReviewInput", - "description": "Autogenerated input type of MarkPullRequestReadyForReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarkPullRequestReadyForReviewPayload", - "description": "Autogenerated return type of MarkPullRequestReadyForReview", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarkedAsDuplicateEvent", - "description": "Represents a 'marked_as_duplicate' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "canonical","args": [], - "type": { - "kind": "UNION", - "name": "IssueOrPullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "duplicate","args": [], - "type": { - "kind": "UNION", - "name": "IssueOrPullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCrossRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarketplaceCategory", - "description": "A public description of a Marketplace category.", - "fields": [ - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "howItWorks","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "primaryListingCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "secondaryListingCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "slug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarketplaceListing", - "description": "A listing in the GitHub integration marketplace.", - "fields": [ - { - "name": "app","args": [], - "type": { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "companyUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "configurationResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "configurationUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "documentationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "extendedDescription","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "extendedDescriptionHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDescription","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDescriptionHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasPublishedFreeTrialPlans","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasTermsOfService","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasVerifiedOwner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "howItWorks","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "howItWorksHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "installationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "installedForViewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isArchived","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDraft","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPaid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPublic","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isRejected","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isUnverified","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isUnverifiedPending","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isVerificationPendingFromDraft","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isVerificationPendingFromUnverified","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isVerified","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "logoBackgroundColor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "logoUrl","args": [ - { - "name": "size", - "description": "The size in pixels of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "400" - } - ], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "normalizedShortDescription","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pricingUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "primaryCategory","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MarketplaceCategory", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "privacyPolicyUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "screenshotUrls","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "secondaryCategory","args": [], - "type": { - "kind": "OBJECT", - "name": "MarketplaceCategory", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "shortDescription","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "slug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "statusUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "supportEmail","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "supportUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "termsOfServiceUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanAddPlans","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanApprove","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelist","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanEditCategories","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanEditPlans","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanRedraft","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanRequestApproval","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasPurchased","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasPurchasedForAllOrganizations","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerIsListingAdmin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarketplaceListingConnection", - "description": "Look up Marketplace Listings", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MarketplaceListingEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MarketplaceListing", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MarketplaceListingEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "MarketplaceListing", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MemberFeatureRequestNotification", - "description": "Represents a member feature request notification", - "fields": [ - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "MemberStatusable", - "description": "Entities that have members who can set status messages.", - "fields": [ - { - "name": "memberStatuses","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for user statuses returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UserStatusOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserStatusConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposClearAuditEntry", - "description": "Audit log entry for a members_can_delete_repos.clear event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposDisableAuditEntry", - "description": "Audit log entry for a members_can_delete_repos.disable event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposEnableAuditEntry", - "description": "Audit log entry for a members_can_delete_repos.enable event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MentionedEvent", - "description": "Represents a 'mentioned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MergeBranchInput", - "description": "Autogenerated input type of MergeBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "base","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "head","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "commitMessage","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "authorEmail","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MergeBranchPayload", - "description": "Autogenerated return type of MergeBranch", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MergeCommitMessage", - "description": "The possible default commit messages for merges.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PR_TITLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PR_BODY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BLANK","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MergeCommitTitle", - "description": "The possible default commit titles for merges.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PR_TITLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MERGE_MESSAGE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MergePullRequestInput", - "description": "Autogenerated input type of MergePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "commitHeadline","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "commitBody","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "expectedHeadOid","type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "mergeMethod","type": { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "ofType": None - }, - "defaultValue": "MERGE" - }, - { - "name": "authorEmail","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MergePullRequestPayload", - "description": "Autogenerated return type of MergePullRequest", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MergeQueue", - "description": "The queue of pull request entries to be merged into a protected branch in a repository.", - "fields": [ - { - "name": "configuration","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueueConfiguration", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "entries","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MergeQueueEntryConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nextEntryEstimatedTimeToMerge","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MergeQueueConfiguration", - "description": "Configuration for a MergeQueue", - "fields": [ - { - "name": "checkResponseTimeout","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "maximumEntriesToBuild","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "maximumEntriesToMerge","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeMethod","args": [], - "type": { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergingStrategy","args": [], - "type": { - "kind": "ENUM", - "name": "MergeQueueMergingStrategy", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimumEntriesToMerge","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimumEntriesToMergeWaitTime","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MergeQueueEntry", - "description": "Entries in a MergeQueue", - "fields": [ - { - "name": "baseCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enqueuedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enqueuer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "estimatedTimeToMerge","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "jump","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeQueue","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "position","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "solo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MergeQueueEntryState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MergeQueueEntryConnection", - "description": "The connection type for MergeQueueEntry.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MergeQueueEntryEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MergeQueueEntry", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MergeQueueEntryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueueEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MergeQueueEntryState", - "description": "The possible states for a merge queue entry.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "QUEUED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AWAITING_CHECKS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MERGEABLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNMERGEABLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LOCKED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MergeQueueMergingStrategy", - "description": "The possible merging strategies for a merge queue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ALLGREEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HEADGREEN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MergeStateStatus", - "description": "Detailed status information about a pull request merge.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DIRTY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNKNOWN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BLOCKED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BEHIND","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DRAFT","isDeprecated": True, - "deprecationReason": "DRAFT state will be removed from this enum and `isDraft` should be used instead Use PullRequest.isDraft instead. Removal on 2021-01-01 UTC." - }, - { - "name": "UNSTABLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HAS_HOOKS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLEAN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MergeableState", - "description": "Whether or not a PullRequest can be merged.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MERGEABLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONFLICTING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNKNOWN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MergedEvent", - "description": "Represents a 'merged' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeRef","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeRefName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Migration", - "description": "Represents a GitHub Enterprise Importer (GEI) migration.", - "fields": [ - { - "name": "continueOnError","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "failureReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "migrationLogUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "migrationSource","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MigrationSource", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sourceUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MigrationState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "warningsCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "RepositoryMigration", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "MigrationSource", - "description": "A GitHub Enterprise Importer (GEI) migration source.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "type","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MigrationSourceType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MigrationSourceType", - "description": "Represents the different GitHub Enterprise Importer (GEI) migration sources.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "AZURE_DEVOPS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BITBUCKET_SERVER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GITHUB_ARCHIVE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MigrationState", - "description": "The GitHub Enterprise Importer (GEI) migration state.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NOT_STARTED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "QUEUED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN_PROGRESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUCCEEDED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING_VALIDATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILED_VALIDATION","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Milestone", - "description": "Represents a Milestone object on a given repository.", - "fields": [ - { - "name": "closed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dueOn","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issues","args": [ - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the issues by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "filterBy", - "description": "Filtering options for issues returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueFilters", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "progressPercentage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequests","args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MilestoneState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanClose","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReopen","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Closable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MilestoneConnection", - "description": "The connection type for Milestone.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MilestoneEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MilestoneEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "MilestoneItem", - "description": "Types that can be inside a Milestone.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "MilestoneOrder", - "description": "Ordering options for milestone connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MilestoneOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MilestoneOrderField", - "description": "Properties by which milestone connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DUE_DATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NUMBER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "MilestoneState", - "description": "The possible states of a milestone.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MilestonedEvent", - "description": "Represents a 'milestoned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "milestoneTitle","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "MilestoneItem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Minimizable", - "description": "Entities that can be minimized.", - "fields": [ - { - "name": "isMinimized","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizedReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMinimize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "GistComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "MinimizeCommentInput", - "description": "Autogenerated input type of MinimizeComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "subjectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "classifier","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ReportedContentClassifiers", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MinimizeCommentPayload", - "description": "Autogenerated return type of MinimizeComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizedComment","args": [], - "type": { - "kind": "INTERFACE", - "name": "Minimizable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MoveProjectCardInput", - "description": "Autogenerated input type of MoveProjectCard", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "cardId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "columnId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "afterCardId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MoveProjectCardPayload", - "description": "Autogenerated return type of MoveProjectCard", - "fields": [ - { - "name": "cardEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectCardEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "MoveProjectColumnInput", - "description": "Autogenerated input type of MoveProjectColumn", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "columnId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "afterColumnId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MoveProjectColumnPayload", - "description": "Autogenerated return type of MoveProjectColumn", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "columnEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectColumnEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "MovedColumnsInProjectEvent", - "description": "Represents a 'moved_columns_in_project' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "previousProjectColumnName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectCard","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectCard", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectColumnName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": "The root query for implementing GraphQL mutations.", - "fields": [ - { - "name": "abortQueuedMigrations","args": [ - { - "name": "input", - "description": "Parameters for AbortQueuedMigrations", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AbortQueuedMigrationsInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AbortQueuedMigrationsPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "abortRepositoryMigration","args": [ - { - "name": "input", - "description": "Parameters for AbortRepositoryMigration", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AbortRepositoryMigrationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AbortRepositoryMigrationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "acceptEnterpriseAdministratorInvitation","args": [ - { - "name": "input", - "description": "Parameters for AcceptEnterpriseAdministratorInvitation", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AcceptEnterpriseAdministratorInvitationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AcceptEnterpriseAdministratorInvitationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "acceptTopicSuggestion","args": [ - { - "name": "input", - "description": "Parameters for AcceptTopicSuggestion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AcceptTopicSuggestionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AcceptTopicSuggestionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addAssigneesToAssignable","args": [ - { - "name": "input", - "description": "Parameters for AddAssigneesToAssignable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddAssigneesToAssignableInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddAssigneesToAssignablePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addComment","args": [ - { - "name": "input", - "description": "Parameters for AddComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addDiscussionComment","args": [ - { - "name": "input", - "description": "Parameters for AddDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddDiscussionCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddDiscussionCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addDiscussionPollVote","args": [ - { - "name": "input", - "description": "Parameters for AddDiscussionPollVote", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddDiscussionPollVoteInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddDiscussionPollVotePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addEnterpriseOrganizationMember","args": [ - { - "name": "input", - "description": "Parameters for AddEnterpriseOrganizationMember", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddEnterpriseOrganizationMemberInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddEnterpriseOrganizationMemberPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addEnterpriseSupportEntitlement","args": [ - { - "name": "input", - "description": "Parameters for AddEnterpriseSupportEntitlement", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddEnterpriseSupportEntitlementInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddEnterpriseSupportEntitlementPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addLabelsToLabelable","args": [ - { - "name": "input", - "description": "Parameters for AddLabelsToLabelable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddLabelsToLabelableInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddLabelsToLabelablePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addProjectCard","args": [ - { - "name": "input", - "description": "Parameters for AddProjectCard", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddProjectCardInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddProjectCardPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addProjectColumn","args": [ - { - "name": "input", - "description": "Parameters for AddProjectColumn", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddProjectColumnInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddProjectColumnPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addProjectV2DraftIssue","args": [ - { - "name": "input", - "description": "Parameters for AddProjectV2DraftIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddProjectV2DraftIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddProjectV2DraftIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addProjectV2ItemById","args": [ - { - "name": "input", - "description": "Parameters for AddProjectV2ItemById", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddProjectV2ItemByIdInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddProjectV2ItemByIdPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addPullRequestReview","args": [ - { - "name": "input", - "description": "Parameters for AddPullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddPullRequestReviewPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addPullRequestReviewComment","args": [ - { - "name": "input", - "description": "Parameters for AddPullRequestReviewComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddPullRequestReviewCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addPullRequestReviewThread","args": [ - { - "name": "input", - "description": "Parameters for AddPullRequestReviewThread", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewThreadInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddPullRequestReviewThreadPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addPullRequestReviewThreadReply","args": [ - { - "name": "input", - "description": "Parameters for AddPullRequestReviewThreadReply", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewThreadReplyInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddPullRequestReviewThreadReplyPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addReaction","args": [ - { - "name": "input", - "description": "Parameters for AddReaction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddReactionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddReactionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addStar","args": [ - { - "name": "input", - "description": "Parameters for AddStar", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddStarInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddStarPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addUpvote","args": [ - { - "name": "input", - "description": "Parameters for AddUpvote", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddUpvoteInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddUpvotePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "addVerifiableDomain","args": [ - { - "name": "input", - "description": "Parameters for AddVerifiableDomain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddVerifiableDomainInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "AddVerifiableDomainPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "approveVerifiableDomain","args": [ - { - "name": "input", - "description": "Parameters for ApproveVerifiableDomain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApproveVerifiableDomainInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ApproveVerifiableDomainPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "archiveProjectV2Item","args": [ - { - "name": "input", - "description": "Parameters for ArchiveProjectV2Item", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ArchiveProjectV2ItemInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ArchiveProjectV2ItemPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "archiveRepository","args": [ - { - "name": "input", - "description": "Parameters for ArchiveRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ArchiveRepositoryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ArchiveRepositoryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "cancelEnterpriseAdminInvitation","args": [ - { - "name": "input", - "description": "Parameters for CancelEnterpriseAdminInvitation", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CancelEnterpriseAdminInvitationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CancelEnterpriseAdminInvitationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "cancelSponsorship","args": [ - { - "name": "input", - "description": "Parameters for CancelSponsorship", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CancelSponsorshipInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CancelSponsorshipPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "changeUserStatus","args": [ - { - "name": "input", - "description": "Parameters for ChangeUserStatus", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeUserStatusInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ChangeUserStatusPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clearLabelsFromLabelable","args": [ - { - "name": "input", - "description": "Parameters for ClearLabelsFromLabelable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ClearLabelsFromLabelableInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ClearLabelsFromLabelablePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clearProjectV2ItemFieldValue","args": [ - { - "name": "input", - "description": "Parameters for ClearProjectV2ItemFieldValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ClearProjectV2ItemFieldValueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ClearProjectV2ItemFieldValuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "cloneProject","args": [ - { - "name": "input", - "description": "Parameters for CloneProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CloneProjectInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CloneProjectPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "cloneTemplateRepository","args": [ - { - "name": "input", - "description": "Parameters for CloneTemplateRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CloneTemplateRepositoryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CloneTemplateRepositoryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closeDiscussion","args": [ - { - "name": "input", - "description": "Parameters for CloseDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CloseDiscussionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CloseDiscussionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closeIssue","args": [ - { - "name": "input", - "description": "Parameters for CloseIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CloseIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CloseIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closePullRequest","args": [ - { - "name": "input", - "description": "Parameters for ClosePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ClosePullRequestInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ClosePullRequestPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "convertProjectCardNoteToIssue","args": [ - { - "name": "input", - "description": "Parameters for ConvertProjectCardNoteToIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ConvertProjectCardNoteToIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ConvertProjectCardNoteToIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "convertPullRequestToDraft","args": [ - { - "name": "input", - "description": "Parameters for ConvertPullRequestToDraft", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ConvertPullRequestToDraftInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ConvertPullRequestToDraftPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "copyProjectV2","args": [ - { - "name": "input", - "description": "Parameters for CopyProjectV2", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CopyProjectV2Input", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CopyProjectV2Payload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createAttributionInvitation","args": [ - { - "name": "input", - "description": "Parameters for CreateAttributionInvitation", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateAttributionInvitationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateAttributionInvitationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createBranchProtectionRule","args": [ - { - "name": "input", - "description": "Parameters for CreateBranchProtectionRule", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateBranchProtectionRuleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateBranchProtectionRulePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createCheckRun","args": [ - { - "name": "input", - "description": "Parameters for CreateCheckRun", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCheckRunInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateCheckRunPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createCheckSuite","args": [ - { - "name": "input", - "description": "Parameters for CreateCheckSuite", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCheckSuiteInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateCheckSuitePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createCommitOnBranch","args": [ - { - "name": "input", - "description": "Parameters for CreateCommitOnBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCommitOnBranchInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateCommitOnBranchPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createDeploymentStatus","args": [ - { - "name": "input", - "description": "Parameters for CreateDeploymentStatus", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateDeploymentStatusInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateDeploymentStatusPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createDiscussion","args": [ - { - "name": "input", - "description": "Parameters for CreateDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateDiscussionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateDiscussionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createEnterpriseOrganization","args": [ - { - "name": "input", - "description": "Parameters for CreateEnterpriseOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateEnterpriseOrganizationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateEnterpriseOrganizationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createEnvironment","args": [ - { - "name": "input", - "description": "Parameters for CreateEnvironment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateEnvironmentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateEnvironmentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createIpAllowListEntry","args": [ - { - "name": "input", - "description": "Parameters for CreateIpAllowListEntry", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateIpAllowListEntryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateIpAllowListEntryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createIssue","args": [ - { - "name": "input", - "description": "Parameters for CreateIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createLabel","args": [ - { - "name": "input", - "description": "Parameters for CreateLabel", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateLabelInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateLabelPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createLinkedBranch","args": [ - { - "name": "input", - "description": "Parameters for CreateLinkedBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateLinkedBranchInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateLinkedBranchPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createMigrationSource","args": [ - { - "name": "input", - "description": "Parameters for CreateMigrationSource", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateMigrationSourceInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateMigrationSourcePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createProject","args": [ - { - "name": "input", - "description": "Parameters for CreateProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateProjectInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateProjectPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createProjectV2","args": [ - { - "name": "input", - "description": "Parameters for CreateProjectV2", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateProjectV2Input", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateProjectV2Payload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createProjectV2Field","args": [ - { - "name": "input", - "description": "Parameters for CreateProjectV2Field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateProjectV2FieldInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateProjectV2FieldPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createPullRequest","args": [ - { - "name": "input", - "description": "Parameters for CreatePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreatePullRequestInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreatePullRequestPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createRef","args": [ - { - "name": "input", - "description": "Parameters for CreateRef", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateRefInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateRefPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createRepository","args": [ - { - "name": "input", - "description": "Parameters for CreateRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateRepositoryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateRepositoryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createRepositoryRuleset","args": [ - { - "name": "input", - "description": "Parameters for CreateRepositoryRuleset", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateRepositoryRulesetInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateRepositoryRulesetPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createSponsorsListing","args": [ - { - "name": "input", - "description": "Parameters for CreateSponsorsListing", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorsListingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateSponsorsListingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createSponsorsTier","args": [ - { - "name": "input", - "description": "Parameters for CreateSponsorsTier", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorsTierInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateSponsorsTierPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createSponsorship","args": [ - { - "name": "input", - "description": "Parameters for CreateSponsorship", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorshipInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateSponsorshipPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createSponsorships","args": [ - { - "name": "input", - "description": "Parameters for CreateSponsorships", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorshipsInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateSponsorshipsPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createTeamDiscussion","args": [ - { - "name": "input", - "description": "Parameters for CreateTeamDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTeamDiscussionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateTeamDiscussionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createTeamDiscussionComment","args": [ - { - "name": "input", - "description": "Parameters for CreateTeamDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTeamDiscussionCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateTeamDiscussionCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createUserList","args": [ - { - "name": "input", - "description": "Parameters for CreateUserList", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateUserListInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateUserListPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "declineTopicSuggestion","args": [ - { - "name": "input", - "description": "Parameters for DeclineTopicSuggestion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeclineTopicSuggestionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeclineTopicSuggestionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteBranchProtectionRule","args": [ - { - "name": "input", - "description": "Parameters for DeleteBranchProtectionRule", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteBranchProtectionRuleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteBranchProtectionRulePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteDeployment","args": [ - { - "name": "input", - "description": "Parameters for DeleteDeployment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteDeploymentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteDeploymentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteDiscussion","args": [ - { - "name": "input", - "description": "Parameters for DeleteDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteDiscussionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteDiscussionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteDiscussionComment","args": [ - { - "name": "input", - "description": "Parameters for DeleteDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteDiscussionCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteDiscussionCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteEnvironment","args": [ - { - "name": "input", - "description": "Parameters for DeleteEnvironment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteEnvironmentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteEnvironmentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteIpAllowListEntry","args": [ - { - "name": "input", - "description": "Parameters for DeleteIpAllowListEntry", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteIpAllowListEntryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteIpAllowListEntryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteIssue","args": [ - { - "name": "input", - "description": "Parameters for DeleteIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteIssueComment","args": [ - { - "name": "input", - "description": "Parameters for DeleteIssueComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteIssueCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteIssueCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteLabel","args": [ - { - "name": "input", - "description": "Parameters for DeleteLabel", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteLabelPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteLinkedBranch","args": [ - { - "name": "input", - "description": "Parameters for DeleteLinkedBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteLinkedBranchInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteLinkedBranchPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletePackageVersion","args": [ - { - "name": "input", - "description": "Parameters for DeletePackageVersion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeletePackageVersionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeletePackageVersionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteProject","args": [ - { - "name": "input", - "description": "Parameters for DeleteProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteProjectCard","args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectCard", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectCardInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectCardPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteProjectColumn","args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectColumn", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectColumnInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectColumnPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteProjectV2","args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectV2", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2Input", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectV2Payload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteProjectV2Field","args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectV2Field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2FieldInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectV2FieldPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteProjectV2Item","args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectV2Item", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2ItemInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectV2ItemPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteProjectV2Workflow","args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectV2Workflow", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2WorkflowInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteProjectV2WorkflowPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletePullRequestReview","args": [ - { - "name": "input", - "description": "Parameters for DeletePullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeletePullRequestReviewInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeletePullRequestReviewPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletePullRequestReviewComment","args": [ - { - "name": "input", - "description": "Parameters for DeletePullRequestReviewComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeletePullRequestReviewCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeletePullRequestReviewCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteRef","args": [ - { - "name": "input", - "description": "Parameters for DeleteRef", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteRefInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteRefPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteRepositoryRuleset","args": [ - { - "name": "input", - "description": "Parameters for DeleteRepositoryRuleset", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteRepositoryRulesetInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteRepositoryRulesetPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteTeamDiscussion","args": [ - { - "name": "input", - "description": "Parameters for DeleteTeamDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamDiscussionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteTeamDiscussionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteTeamDiscussionComment","args": [ - { - "name": "input", - "description": "Parameters for DeleteTeamDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamDiscussionCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteTeamDiscussionCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteUserList","args": [ - { - "name": "input", - "description": "Parameters for DeleteUserList", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteUserListInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteUserListPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteVerifiableDomain","args": [ - { - "name": "input", - "description": "Parameters for DeleteVerifiableDomain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteVerifiableDomainInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteVerifiableDomainPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dequeuePullRequest","args": [ - { - "name": "input", - "description": "Parameters for DequeuePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DequeuePullRequestInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DequeuePullRequestPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "disablePullRequestAutoMerge","args": [ - { - "name": "input", - "description": "Parameters for DisablePullRequestAutoMerge", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DisablePullRequestAutoMergeInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DisablePullRequestAutoMergePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismissPullRequestReview","args": [ - { - "name": "input", - "description": "Parameters for DismissPullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DismissPullRequestReviewInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DismissPullRequestReviewPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismissRepositoryVulnerabilityAlert","args": [ - { - "name": "input", - "description": "Parameters for DismissRepositoryVulnerabilityAlert", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DismissRepositoryVulnerabilityAlertInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DismissRepositoryVulnerabilityAlertPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enablePullRequestAutoMerge","args": [ - { - "name": "input", - "description": "Parameters for EnablePullRequestAutoMerge", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EnablePullRequestAutoMergeInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "EnablePullRequestAutoMergePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enqueuePullRequest","args": [ - { - "name": "input", - "description": "Parameters for EnqueuePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EnqueuePullRequestInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "EnqueuePullRequestPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "followOrganization","args": [ - { - "name": "input", - "description": "Parameters for FollowOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FollowOrganizationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "FollowOrganizationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "followUser","args": [ - { - "name": "input", - "description": "Parameters for FollowUser", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FollowUserInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "FollowUserPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "grantEnterpriseOrganizationsMigratorRole","args": [ - { - "name": "input", - "description": "Parameters for GrantEnterpriseOrganizationsMigratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GrantEnterpriseOrganizationsMigratorRoleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "GrantEnterpriseOrganizationsMigratorRolePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "grantMigratorRole","args": [ - { - "name": "input", - "description": "Parameters for GrantMigratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GrantMigratorRoleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "GrantMigratorRolePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "importProject","args": [ - { - "name": "input", - "description": "Parameters for ImportProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportProjectInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ImportProjectPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "inviteEnterpriseAdmin","args": [ - { - "name": "input", - "description": "Parameters for InviteEnterpriseAdmin", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InviteEnterpriseAdminInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "InviteEnterpriseAdminPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "linkProjectV2ToRepository","args": [ - { - "name": "input", - "description": "Parameters for LinkProjectV2ToRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LinkProjectV2ToRepositoryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LinkProjectV2ToRepositoryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "linkProjectV2ToTeam","args": [ - { - "name": "input", - "description": "Parameters for LinkProjectV2ToTeam", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LinkProjectV2ToTeamInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LinkProjectV2ToTeamPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "linkRepositoryToProject","args": [ - { - "name": "input", - "description": "Parameters for LinkRepositoryToProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LinkRepositoryToProjectInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LinkRepositoryToProjectPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockLockable","args": [ - { - "name": "input", - "description": "Parameters for LockLockable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LockLockableInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LockLockablePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "markDiscussionCommentAsAnswer","args": [ - { - "name": "input", - "description": "Parameters for MarkDiscussionCommentAsAnswer", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkDiscussionCommentAsAnswerInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MarkDiscussionCommentAsAnswerPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "markFileAsViewed","args": [ - { - "name": "input", - "description": "Parameters for MarkFileAsViewed", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkFileAsViewedInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MarkFileAsViewedPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "markNotificationAsDone","args": [ - { - "name": "input", - "description": "Parameters for MarkNotificationAsDone", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkNotificationAsDoneInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MarkNotificationAsDonePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "markProjectV2AsTemplate","args": [ - { - "name": "input", - "description": "Parameters for MarkProjectV2AsTemplate", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkProjectV2AsTemplateInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MarkProjectV2AsTemplatePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "markPullRequestReadyForReview","args": [ - { - "name": "input", - "description": "Parameters for MarkPullRequestReadyForReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkPullRequestReadyForReviewInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MarkPullRequestReadyForReviewPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeBranch","args": [ - { - "name": "input", - "description": "Parameters for MergeBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MergeBranchInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MergeBranchPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergePullRequest","args": [ - { - "name": "input", - "description": "Parameters for MergePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MergePullRequestInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MergePullRequestPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizeComment","args": [ - { - "name": "input", - "description": "Parameters for MinimizeComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MinimizeCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MinimizeCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "moveProjectCard","args": [ - { - "name": "input", - "description": "Parameters for MoveProjectCard", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MoveProjectCardInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MoveProjectCardPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "moveProjectColumn","args": [ - { - "name": "input", - "description": "Parameters for MoveProjectColumn", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MoveProjectColumnInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MoveProjectColumnPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinIssue","args": [ - { - "name": "input", - "description": "Parameters for PinIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PinIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PinIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishSponsorsTier","args": [ - { - "name": "input", - "description": "Parameters for PublishSponsorsTier", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PublishSponsorsTierInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PublishSponsorsTierPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "regenerateEnterpriseIdentityProviderRecoveryCodes","args": [ - { - "name": "input", - "description": "Parameters for RegenerateEnterpriseIdentityProviderRecoveryCodes", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "regenerateVerifiableDomainToken","args": [ - { - "name": "input", - "description": "Parameters for RegenerateVerifiableDomainToken", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RegenerateVerifiableDomainTokenInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RegenerateVerifiableDomainTokenPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rejectDeployments","args": [ - { - "name": "input", - "description": "Parameters for RejectDeployments", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RejectDeploymentsInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RejectDeploymentsPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeAssigneesFromAssignable","args": [ - { - "name": "input", - "description": "Parameters for RemoveAssigneesFromAssignable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveAssigneesFromAssignableInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveAssigneesFromAssignablePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeEnterpriseAdmin","args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseAdmin", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseAdminInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveEnterpriseAdminPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeEnterpriseIdentityProvider","args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseIdentityProvider", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseIdentityProviderInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveEnterpriseIdentityProviderPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeEnterpriseMember","args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseMember", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseMemberInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveEnterpriseMemberPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeEnterpriseOrganization","args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseOrganizationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveEnterpriseOrganizationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeEnterpriseSupportEntitlement","args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseSupportEntitlement", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseSupportEntitlementInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveEnterpriseSupportEntitlementPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeLabelsFromLabelable","args": [ - { - "name": "input", - "description": "Parameters for RemoveLabelsFromLabelable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveLabelsFromLabelableInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveLabelsFromLabelablePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeOutsideCollaborator","args": [ - { - "name": "input", - "description": "Parameters for RemoveOutsideCollaborator", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveOutsideCollaboratorInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveOutsideCollaboratorPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeReaction","args": [ - { - "name": "input", - "description": "Parameters for RemoveReaction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveReactionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveReactionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeStar","args": [ - { - "name": "input", - "description": "Parameters for RemoveStar", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveStarInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveStarPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removeUpvote","args": [ - { - "name": "input", - "description": "Parameters for RemoveUpvote", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveUpvoteInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveUpvotePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reopenDiscussion","args": [ - { - "name": "input", - "description": "Parameters for ReopenDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReopenDiscussionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ReopenDiscussionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reopenIssue","args": [ - { - "name": "input", - "description": "Parameters for ReopenIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReopenIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ReopenIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reopenPullRequest","args": [ - { - "name": "input", - "description": "Parameters for ReopenPullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReopenPullRequestInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ReopenPullRequestPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requestReviews","args": [ - { - "name": "input", - "description": "Parameters for RequestReviews", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestReviewsInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RequestReviewsPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rerequestCheckSuite","args": [ - { - "name": "input", - "description": "Parameters for RerequestCheckSuite", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RerequestCheckSuiteInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RerequestCheckSuitePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resolveReviewThread","args": [ - { - "name": "input", - "description": "Parameters for ResolveReviewThread", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResolveReviewThreadInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ResolveReviewThreadPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "retireSponsorsTier","args": [ - { - "name": "input", - "description": "Parameters for RetireSponsorsTier", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RetireSponsorsTierInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RetireSponsorsTierPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "revertPullRequest","args": [ - { - "name": "input", - "description": "Parameters for RevertPullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RevertPullRequestInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RevertPullRequestPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "revokeEnterpriseOrganizationsMigratorRole","args": [ - { - "name": "input", - "description": "Parameters for RevokeEnterpriseOrganizationsMigratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RevokeEnterpriseOrganizationsMigratorRoleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RevokeEnterpriseOrganizationsMigratorRolePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "revokeMigratorRole","args": [ - { - "name": "input", - "description": "Parameters for RevokeMigratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RevokeMigratorRoleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RevokeMigratorRolePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "setEnterpriseIdentityProvider","args": [ - { - "name": "input", - "description": "Parameters for SetEnterpriseIdentityProvider", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetEnterpriseIdentityProviderInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "SetEnterpriseIdentityProviderPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "setOrganizationInteractionLimit","args": [ - { - "name": "input", - "description": "Parameters for SetOrganizationInteractionLimit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetOrganizationInteractionLimitInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "SetOrganizationInteractionLimitPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "setRepositoryInteractionLimit","args": [ - { - "name": "input", - "description": "Parameters for SetRepositoryInteractionLimit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetRepositoryInteractionLimitInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "SetRepositoryInteractionLimitPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "setUserInteractionLimit","args": [ - { - "name": "input", - "description": "Parameters for SetUserInteractionLimit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetUserInteractionLimitInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "SetUserInteractionLimitPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startOrganizationMigration","args": [ - { - "name": "input", - "description": "Parameters for StartOrganizationMigration", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StartOrganizationMigrationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "StartOrganizationMigrationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startRepositoryMigration","args": [ - { - "name": "input", - "description": "Parameters for StartRepositoryMigration", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StartRepositoryMigrationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "StartRepositoryMigrationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "submitPullRequestReview","args": [ - { - "name": "input", - "description": "Parameters for SubmitPullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SubmitPullRequestReviewInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "SubmitPullRequestReviewPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "transferEnterpriseOrganization","args": [ - { - "name": "input", - "description": "Parameters for TransferEnterpriseOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TransferEnterpriseOrganizationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "TransferEnterpriseOrganizationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "transferIssue","args": [ - { - "name": "input", - "description": "Parameters for TransferIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TransferIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "TransferIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unarchiveProjectV2Item","args": [ - { - "name": "input", - "description": "Parameters for UnarchiveProjectV2Item", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnarchiveProjectV2ItemInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnarchiveProjectV2ItemPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unarchiveRepository","args": [ - { - "name": "input", - "description": "Parameters for UnarchiveRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnarchiveRepositoryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnarchiveRepositoryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unfollowOrganization","args": [ - { - "name": "input", - "description": "Parameters for UnfollowOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnfollowOrganizationInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnfollowOrganizationPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unfollowUser","args": [ - { - "name": "input", - "description": "Parameters for UnfollowUser", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnfollowUserInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnfollowUserPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unlinkProjectV2FromRepository","args": [ - { - "name": "input", - "description": "Parameters for UnlinkProjectV2FromRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnlinkProjectV2FromRepositoryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnlinkProjectV2FromRepositoryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unlinkProjectV2FromTeam","args": [ - { - "name": "input", - "description": "Parameters for UnlinkProjectV2FromTeam", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnlinkProjectV2FromTeamInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnlinkProjectV2FromTeamPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unlinkRepositoryFromProject","args": [ - { - "name": "input", - "description": "Parameters for UnlinkRepositoryFromProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnlinkRepositoryFromProjectInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnlinkRepositoryFromProjectPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unlockLockable","args": [ - { - "name": "input", - "description": "Parameters for UnlockLockable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnlockLockableInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnlockLockablePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unmarkDiscussionCommentAsAnswer","args": [ - { - "name": "input", - "description": "Parameters for UnmarkDiscussionCommentAsAnswer", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnmarkDiscussionCommentAsAnswerInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnmarkDiscussionCommentAsAnswerPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unmarkFileAsViewed","args": [ - { - "name": "input", - "description": "Parameters for UnmarkFileAsViewed", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnmarkFileAsViewedInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnmarkFileAsViewedPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unmarkIssueAsDuplicate","args": [ - { - "name": "input", - "description": "Parameters for UnmarkIssueAsDuplicate", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnmarkIssueAsDuplicateInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnmarkIssueAsDuplicatePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unmarkProjectV2AsTemplate","args": [ - { - "name": "input", - "description": "Parameters for UnmarkProjectV2AsTemplate", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnmarkProjectV2AsTemplateInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnmarkProjectV2AsTemplatePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unminimizeComment","args": [ - { - "name": "input", - "description": "Parameters for UnminimizeComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnminimizeCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnminimizeCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unpinIssue","args": [ - { - "name": "input", - "description": "Parameters for UnpinIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnpinIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnpinIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unresolveReviewThread","args": [ - { - "name": "input", - "description": "Parameters for UnresolveReviewThread", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnresolveReviewThreadInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnresolveReviewThreadPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unsubscribeFromNotifications","args": [ - { - "name": "input", - "description": "Parameters for UnsubscribeFromNotifications", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsubscribeFromNotificationsInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UnsubscribeFromNotificationsPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateBranchProtectionRule","args": [ - { - "name": "input", - "description": "Parameters for UpdateBranchProtectionRule", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateBranchProtectionRuleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateBranchProtectionRulePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateCheckRun","args": [ - { - "name": "input", - "description": "Parameters for UpdateCheckRun", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCheckRunInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateCheckRunPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateCheckSuitePreferences","args": [ - { - "name": "input", - "description": "Parameters for UpdateCheckSuitePreferences", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCheckSuitePreferencesInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateCheckSuitePreferencesPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateDiscussion","args": [ - { - "name": "input", - "description": "Parameters for UpdateDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateDiscussionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateDiscussionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateDiscussionComment","args": [ - { - "name": "input", - "description": "Parameters for UpdateDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateDiscussionCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateDiscussionCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseAdministratorRole","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseAdministratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseAdministratorRoleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseAdministratorRolePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseAllowPrivateRepositoryForkingSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseAllowPrivateRepositoryForkingSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseDefaultRepositoryPermissionSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseDefaultRepositoryPermissionSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseMembersCanChangeRepositoryVisibilitySetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseMembersCanCreateRepositoriesSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanCreateRepositoriesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseMembersCanDeleteIssuesSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanDeleteIssuesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseMembersCanDeleteRepositoriesSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanDeleteRepositoriesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseMembersCanInviteCollaboratorsSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanInviteCollaboratorsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseMembersCanMakePurchasesSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanMakePurchasesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanMakePurchasesSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanMakePurchasesSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseMembersCanUpdateProtectedBranchesSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseMembersCanViewDependencyInsightsSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanViewDependencyInsightsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseOrganizationProjectsSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseOrganizationProjectsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseOrganizationProjectsSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseOrganizationProjectsSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseOwnerOrganizationRole","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseOwnerOrganizationRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseOwnerOrganizationRoleInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseOwnerOrganizationRolePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseProfile","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseProfile", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseProfileInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseProfilePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseRepositoryProjectsSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseRepositoryProjectsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseRepositoryProjectsSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseRepositoryProjectsSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseTeamDiscussionsSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseTeamDiscussionsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseTeamDiscussionsSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseTeamDiscussionsSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnterpriseTwoFactorAuthenticationRequiredSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateEnvironment","args": [ - { - "name": "input", - "description": "Parameters for UpdateEnvironment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnvironmentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnvironmentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateIpAllowListEnabledSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateIpAllowListEnabledSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListEnabledSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateIpAllowListEnabledSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateIpAllowListEntry","args": [ - { - "name": "input", - "description": "Parameters for UpdateIpAllowListEntry", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListEntryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateIpAllowListEntryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateIpAllowListForInstalledAppsEnabledSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateIpAllowListForInstalledAppsEnabledSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListForInstalledAppsEnabledSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateIpAllowListForInstalledAppsEnabledSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateIssue","args": [ - { - "name": "input", - "description": "Parameters for UpdateIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateIssueComment","args": [ - { - "name": "input", - "description": "Parameters for UpdateIssueComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIssueCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateIssueCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateLabel","args": [ - { - "name": "input", - "description": "Parameters for UpdateLabel", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateLabelInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateLabelPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateNotificationRestrictionSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateNotificationRestrictionSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateNotificationRestrictionSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateNotificationRestrictionSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateOrganizationAllowPrivateRepositoryForkingSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateOrganizationAllowPrivateRepositoryForkingSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateOrganizationWebCommitSignoffSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateOrganizationWebCommitSignoffSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationWebCommitSignoffSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateOrganizationWebCommitSignoffSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatePatreonSponsorability","args": [ - { - "name": "input", - "description": "Parameters for UpdatePatreonSponsorability", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePatreonSponsorabilityInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdatePatreonSponsorabilityPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateProject","args": [ - { - "name": "input", - "description": "Parameters for UpdateProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateProjectCard","args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectCard", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectCardInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectCardPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateProjectColumn","args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectColumn", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectColumnInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectColumnPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateProjectV2","args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2Input", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectV2Payload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateProjectV2Collaborators","args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2Collaborators", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2CollaboratorsInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectV2CollaboratorsPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateProjectV2DraftIssue","args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2DraftIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2DraftIssueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectV2DraftIssuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateProjectV2ItemFieldValue","args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2ItemFieldValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2ItemFieldValueInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectV2ItemFieldValuePayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateProjectV2ItemPosition","args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2ItemPosition", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2ItemPositionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateProjectV2ItemPositionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatePullRequest","args": [ - { - "name": "input", - "description": "Parameters for UpdatePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdatePullRequestPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatePullRequestBranch","args": [ - { - "name": "input", - "description": "Parameters for UpdatePullRequestBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestBranchInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdatePullRequestBranchPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatePullRequestReview","args": [ - { - "name": "input", - "description": "Parameters for UpdatePullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestReviewInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdatePullRequestReviewPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatePullRequestReviewComment","args": [ - { - "name": "input", - "description": "Parameters for UpdatePullRequestReviewComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestReviewCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdatePullRequestReviewCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateRef","args": [ - { - "name": "input", - "description": "Parameters for UpdateRef", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRefInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateRefPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateRefs","args": [ - { - "name": "input", - "description": "Parameters for UpdateRefs", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRefsInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateRefsPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateRepository","args": [ - { - "name": "input", - "description": "Parameters for UpdateRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateRepositoryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateRepositoryRuleset","args": [ - { - "name": "input", - "description": "Parameters for UpdateRepositoryRuleset", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryRulesetInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateRepositoryRulesetPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateRepositoryWebCommitSignoffSetting","args": [ - { - "name": "input", - "description": "Parameters for UpdateRepositoryWebCommitSignoffSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryWebCommitSignoffSettingInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateRepositoryWebCommitSignoffSettingPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateSponsorshipPreferences","args": [ - { - "name": "input", - "description": "Parameters for UpdateSponsorshipPreferences", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateSponsorshipPreferencesInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateSponsorshipPreferencesPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateSubscription","args": [ - { - "name": "input", - "description": "Parameters for UpdateSubscription", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateSubscriptionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateSubscriptionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateTeamDiscussion","args": [ - { - "name": "input", - "description": "Parameters for UpdateTeamDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamDiscussionInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateTeamDiscussionPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateTeamDiscussionComment","args": [ - { - "name": "input", - "description": "Parameters for UpdateTeamDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamDiscussionCommentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateTeamDiscussionCommentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateTeamReviewAssignment","args": [ - { - "name": "input", - "description": "Parameters for UpdateTeamReviewAssignment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamReviewAssignmentInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateTeamReviewAssignmentPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateTeamsRepository","args": [ - { - "name": "input", - "description": "Parameters for UpdateTeamsRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamsRepositoryInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateTeamsRepositoryPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateTopics","args": [ - { - "name": "input", - "description": "Parameters for UpdateTopics", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTopicsInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateTopicsPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateUserList","args": [ - { - "name": "input", - "description": "Parameters for UpdateUserList", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateUserListInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateUserListPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updateUserListsForItem","args": [ - { - "name": "input", - "description": "Parameters for UpdateUserListsForItem", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateUserListsForItemInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateUserListsForItemPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "verifyVerifiableDomain","args": [ - { - "name": "input", - "description": "Parameters for VerifyVerifiableDomain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VerifyVerifiableDomainInput", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "VerifyVerifiableDomainPayload", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "description": "An object with an ID.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AddedToMergeQueueEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AddedToProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AssignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutoMergeDisabledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutoMergeEnabledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutoRebaseEnabledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutoSquashEnabledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutomaticBaseChangeFailedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutomaticBaseChangeSucceededEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BaseRefChangedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BaseRefDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BaseRefForcePushedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Blob", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Bot", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BypassForcePushAllowance", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BypassPullRequestAllowance", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CWE", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CheckRun", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CheckSuite", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ClosedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CodeOfConduct", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommentDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommitCommentThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Comparison", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConnectedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertToDraftEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertedNoteToIssueEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertedToDiscussionEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CrossReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DemilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DependencyGraphManifest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeployKey", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeployedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeploymentEnvironmentChangedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeploymentReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeploymentStatus", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DisconnectedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionCategory", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionPoll", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionPollOption", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DraftIssue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseIdentityProvider", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfo", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccount", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmail", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUpload", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "EnterpriseUserAccount", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Environment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ExternalIdentity", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Gist", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "GistComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefForcePushedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefRestoredEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IpAllowListEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Label", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Language", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "License", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LinkedBranch", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MarkedAsDuplicateEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MarketplaceCategory", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MarketplaceListing", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MemberFeatureRequestNotification", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposClearAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MentionedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MergeQueue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MergeQueueEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MergedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MigrationSource", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MovedColumnsInProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OIDCProvider", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OauthApplicationCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgAddBillingManagerAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgBlockUserAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableOauthAppRestrictionsAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableSamlAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableTwoFactorRequirementAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableOauthAppRestrictionsAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableSamlAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableTwoFactorRequirementAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteToBusinessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessApprovedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessBlockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessDeniedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessRequestedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessUnblockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveBillingManagerAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveOutsideCollaboratorAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUnblockUserAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrganizationIdentityProvider", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrganizationMigration", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Package", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PackageFile", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PackageTag", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PackageVersion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PinnedDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PinnedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PinnedIssue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectCard", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectColumn", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2Field", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldDateValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldIterationValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldNumberValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldSingleSelectValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldTextValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationField", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectField", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2View", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2Workflow", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitCommentThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Push", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PushAllowance", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Reaction", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReadyForReviewEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Release", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReleaseAsset", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RemovedFromMergeQueueEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RemovedFromProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RenamedTitleEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReopenedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoArchivedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoChangeMergeSettingAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigLockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoDestroyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryInvitation", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryMigration", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRule", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActor", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryTopic", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlert", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewDismissalAllowance", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewDismissedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestRemovedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SavedReply", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisory", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SponsorsActivity", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SponsorsListingFeaturedItem", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SponsorshipNewsletter", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Status", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "StatusCheckRollup", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "StatusContext", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Tag", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddRepositoryAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamChangeParentTeamAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveRepositoryAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TransferredEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Tree", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnassignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnmarkedAsDuplicateEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnpinnedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnsubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UserBlockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UserContentEdit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UserList", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UserStatus", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "VerifiableDomain", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Workflow", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "WorkflowRun", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "WorkflowRunFile", - "ofType": None - } - ] - }, - { - "kind": "ENUM", - "name": "NotificationRestrictionSettingValue", - "description": "The possible values for the notification restriction setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ENABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OIDCProvider", - "description": "An OIDC identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", - "fields": [ - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "externalIdentities","args": [ - { - "name": "membersOnly", - "description": "Filter to external identities with valid org membership only", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "login", - "description": "Filter to external identities with the users login", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userName", - "description": "Filter to external identities with the users userName/NameID attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ExternalIdentityConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "providerType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OIDCProviderType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tenantId","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OIDCProviderType", - "description": "The OIDC identity provider type", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "AAD","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "OauthApplicationAuditEntryData", - "description": "Metadata for an audit entry with action oauth_application.*", - "fields": [ - { - "name": "oauthApplicationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "OauthApplicationCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessApprovedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessBlockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessDeniedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessRequestedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessUnblockedAuditEntry", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "OauthApplicationCreateAuditEntry", - "description": "Audit log entry for a oauth_application.create event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "applicationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "callbackUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rateLimit","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "ENUM", - "name": "OauthApplicationCreateAuditEntryState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OauthApplicationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OauthApplicationCreateAuditEntryState", - "description": "The state of an OAuth application when it was created.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ACTIVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUSPENDED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING_DELETION","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OperationType", - "description": "The corresponding operation type for the action", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ACCESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTHENTICATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MODIFY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REMOVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RESTORE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TRANSFER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrderDirection", - "description": "Possible directions in which to order a list of items when provided an `orderBy` argument.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ASC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DESC","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgAddBillingManagerAuditEntry", - "description": "Audit log entry for a org.add_billing_manager", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitationEmail","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgAddMemberAuditEntry", - "description": "Audit log entry for a org.add_member", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permission","args": [], - "type": { - "kind": "ENUM", - "name": "OrgAddMemberAuditEntryPermission", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgAddMemberAuditEntryPermission", - "description": "The permissions available to members on an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "READ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgBlockUserAuditEntry", - "description": "Audit log entry for a org.block_user", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockedUser","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockedUserName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockedUserResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockedUserUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", - "description": "Audit log entry for a org.config.disable_collaborators_only event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", - "description": "Audit log entry for a org.config.enable_collaborators_only event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgCreateAuditEntry", - "description": "Audit log entry for a org.create event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "billingPlan","args": [], - "type": { - "kind": "ENUM", - "name": "OrgCreateAuditEntryBillingPlan", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgCreateAuditEntryBillingPlan", - "description": "The billing plans available for organizations.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "FREE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BUSINESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BUSINESS_PLUS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNLIMITED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TIERED_PER_SEAT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableOauthAppRestrictionsAuditEntry", - "description": "Audit log entry for a org.disable_oauth_app_restrictions event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableSamlAuditEntry", - "description": "Audit log entry for a org.disable_saml event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "digestMethodUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issuerUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signatureMethodUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "singleSignOnUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableTwoFactorRequirementAuditEntry", - "description": "Audit log entry for a org.disable_two_factor_requirement event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableOauthAppRestrictionsAuditEntry", - "description": "Audit log entry for a org.enable_oauth_app_restrictions event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableSamlAuditEntry", - "description": "Audit log entry for a org.enable_saml event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "digestMethodUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issuerUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signatureMethodUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "singleSignOnUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableTwoFactorRequirementAuditEntry", - "description": "Audit log entry for a org.enable_two_factor_requirement event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "OrgEnterpriseOwnerOrder", - "description": "Ordering options for an organization's enterprise owner connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrgEnterpriseOwnerOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgEnterpriseOwnerOrderField", - "description": "Properties by which enterprise owners can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LOGIN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteMemberAuditEntry", - "description": "Audit log entry for a org.invite_member event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationInvitation","args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteToBusinessAuditEntry", - "description": "Audit log entry for a org.invite_to_business event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessApprovedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_approved event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OauthApplicationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessBlockedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_blocked event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OauthApplicationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessDeniedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_denied event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OauthApplicationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessRequestedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_requested event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OauthApplicationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessUnblockedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_unblocked event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oauthApplicationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OauthApplicationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveBillingManagerAuditEntry", - "description": "Audit log entry for a org.remove_billing_manager event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reason","args": [], - "type": { - "kind": "ENUM", - "name": "OrgRemoveBillingManagerAuditEntryReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgRemoveBillingManagerAuditEntryReason", - "description": "The reason a billing manager was removed from an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SAML_EXTERNAL_IDENTITY_MISSING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SAML_SSO_ENFORCEMENT_REQUIRES_EXTERNAL_IDENTITY","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveMemberAuditEntry", - "description": "Audit log entry for a org.remove_member event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membershipTypes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrgRemoveMemberAuditEntryMembershipType", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reason","args": [], - "type": { - "kind": "ENUM", - "name": "OrgRemoveMemberAuditEntryReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgRemoveMemberAuditEntryMembershipType", - "description": "The type of membership a user has with an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "SUSPENDED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DIRECT_MEMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BILLING_MANAGER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNAFFILIATED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OUTSIDE_COLLABORATOR","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgRemoveMemberAuditEntryReason", - "description": "The reason a member was removed from an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SAML_EXTERNAL_IDENTITY_MISSING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SAML_SSO_ENFORCEMENT_REQUIRES_EXTERNAL_IDENTITY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "USER_ACCOUNT_DELETED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TWO_FACTOR_ACCOUNT_RECOVERY","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveOutsideCollaboratorAuditEntry", - "description": "Audit log entry for a org.remove_outside_collaborator event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membershipTypes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrgRemoveOutsideCollaboratorAuditEntryMembershipType", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reason","args": [], - "type": { - "kind": "ENUM", - "name": "OrgRemoveOutsideCollaboratorAuditEntryReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgRemoveOutsideCollaboratorAuditEntryMembershipType", - "description": "The type of membership a user has with an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OUTSIDE_COLLABORATOR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNAFFILIATED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BILLING_MANAGER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgRemoveOutsideCollaboratorAuditEntryReason", - "description": "The reason an outside collaborator was removed from an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SAML_EXTERNAL_IDENTITY_MISSING","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberAuditEntry", - "description": "Audit log entry for a org.restore_member event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restoredCustomEmailRoutingsCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restoredIssueAssignmentsCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restoredMemberships","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "OrgRestoreMemberAuditEntryMembership", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restoredMembershipsCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restoredRepositoriesCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restoredRepositoryStarsCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "restoredRepositoryWatchesCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "OrgRestoreMemberAuditEntryMembership", - "description": "Types of memberships that can be restored for an Organization member.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipTeamAuditEntryData", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", - "description": "Metadata for an organization membership for org.restore_member actions", - "fields": [ - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", - "description": "Metadata for a repository membership for org.restore_member actions", - "fields": [ - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipTeamAuditEntryData", - "description": "Metadata for a team membership for org.restore_member actions", - "fields": [ - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "TeamAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgUnblockUserAuditEntry", - "description": "Audit log entry for a org.unblock_user", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockedUser","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockedUserName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockedUserResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockedUserUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", - "description": "Audit log entry for a org.update_default_repository_permission", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permission","args": [], - "type": { - "kind": "ENUM", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permissionWas","args": [], - "type": { - "kind": "ENUM", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", - "description": "The default permission a repository can have in an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "READ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WRITE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberAuditEntry", - "description": "Audit log entry for a org.update_member event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permission","args": [], - "type": { - "kind": "ENUM", - "name": "OrgUpdateMemberAuditEntryPermission", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permissionWas","args": [], - "type": { - "kind": "ENUM", - "name": "OrgUpdateMemberAuditEntryPermission", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgUpdateMemberAuditEntryPermission", - "description": "The permissions available to members on an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "READ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "description": "Audit log entry for a org.update_member_repository_creation_permission event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "canCreateRepositories","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "ENUM", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility", - "description": "The permissions available for repository creation on an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC_INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE_INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC_PRIVATE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "description": "Audit log entry for a org.update_member_repository_invitation_permission event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "canInviteOutsideCollaboratorsToRepositories","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "description": "An account on GitHub, with one or more owners, that has repositories, members and teams.", - "fields": [ - { - "name": "announcement","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "announcementExpiresAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "announcementUserDismissible","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "anyPinnableItems","args": [ - { - "name": "type", - "description": "Filter to only a particular kind of pinnable item.", - "type": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "archivedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "auditLog","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "The query string to filter audit entries", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the returned audit log entries.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AuditLogOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationAuditEntryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "descriptionHTML","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "domains","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isVerified", - "description": "Filter by if the domain is verified.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "isApproved", - "description": "Filter by if the domain is approved.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "orderBy", - "description": "Ordering options for verifiable domains returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "VerifiableDomainOrder", - "ofType": None - }, - "defaultValue": "{field: DOMAIN, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "VerifiableDomainConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseOwners","args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationRole", - "description": "The organization role to filter by.", - "type": { - "kind": "ENUM", - "name": "RoleInOrganization", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for enterprise owners returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrgEnterpriseOwnerOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationEnterpriseOwnerConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "estimatedNextSponsorsPayoutInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasSponsorsListing","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "interactionAbility","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryInteractionAbility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListEnabledSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListEnabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListEntries","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for IP allow list entries returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IpAllowListEntryOrder", - "ofType": None - }, - "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IpAllowListEntryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListForInstalledAppsEnabledSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListForInstalledAppsEnabledSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSponsoredBy","args": [ - { - "name": "accountLogin", - "description": "The target account's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSponsoringViewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isVerified","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "itemShowcase","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProfileItemShowcase", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lifetimeReceivedSponsorshipValues","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for results returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorAndLifetimeValueOrder", - "ofType": None - }, - "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "location","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mannequins","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "login", - "description": "Filter mannequins by login.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for mannequins returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "MannequinOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MannequinConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "memberStatuses","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for user statuses returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UserStatusOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserStatusConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersCanForkPrivateRepositories","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersWithRole","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationMemberConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "monthlyEstimatedSponsorsIncomeInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "newTeamResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "newTeamUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "notificationDeliveryRestrictionEnabledSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "NotificationRestrictionSettingValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationBillingEmail","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "packages","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "names", - "description": "Find packages by their names.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "description": "Find packages in a repository by ID.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "packageType", - "description": "Filter registry package by type.", - "type": { - "kind": "ENUM", - "name": "PackageType", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PackageOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pendingMembers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnableItems","args": [ - { - "name": "types", - "description": "Filter the types of pinnable items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedItems","args": [ - { - "name": "types", - "description": "Filter the types of pinned items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedItemsRemaining","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [ - { - "name": "number", - "description": "The project number to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projects","args": [ - { - "name": "orderBy", - "description": "Ordering options for projects returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "search", - "description": "Query to search projects by, currently only searching by name.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the projects by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsV2","args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "ofType": None - }, - "defaultValue": "{field: NUMBER, direction: DESC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "recentProjects","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositories","args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": "[OWNER, COLLABORATOR]" - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isArchived", - "description": "If non-null, filters repositories according to whether they are archived and not maintained", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isFork", - "description": "If non-null, filters repositories according to whether they are forks of another repository", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [ - { - "name": "name", - "description": "Name of Repository to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "followRenames", - "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryDiscussionComments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "description": "Filter discussion comments to only those in a specific repository.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "onlyAnswers", - "description": "Filter discussion comments to only those that were marked as the answer", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryDiscussions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for discussions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DiscussionOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - }, - { - "name": "repositoryId", - "description": "Filter discussions to only those in a specific repository.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "answered", - "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "states", - "description": "A list of states to filter the discussions by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DiscussionState", - "ofType": None - } - } - }, - "defaultValue": "[]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryMigrations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "state", - "description": "Filter repository migrations by state.", - "type": { - "kind": "ENUM", - "name": "MigrationState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryName", - "description": "Filter repository migrations by repository name.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repository migrations returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryMigrationOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryMigrationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresTwoFactorAuthentication","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ruleset","args": [ - { - "name": "databaseId", - "description": "The ID of the ruleset to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rulesets","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "includeParents", - "description": "Return rulesets configured at higher levels that apply to this organization", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryRulesetConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "samlIdentityProvider","args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationIdentityProvider", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsoring","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the users and organizations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorOrder", - "ofType": None - }, - "defaultValue": "{field: RELEVANCE, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsors","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "tierId", - "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsors returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorOrder", - "ofType": None - }, - "defaultValue": "{field: RELEVANCE, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsActivities","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "period", - "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", - "type": { - "kind": "ENUM", - "name": "SponsorsActivityPeriod", - "ofType": None - }, - "defaultValue": "MONTH" - }, - { - "name": "since", - "description": "Filter activities to those that occurred on or after this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "until", - "description": "Filter activities to those that occurred before this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for activity returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorsActivityOrder", - "ofType": None - }, - "defaultValue": "{field: TIMESTAMP, direction: DESC}" - }, - { - "name": "actions", - "description": "Filter activities to only the specified actions.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "ofType": None - } - } - }, - "defaultValue": "[]" - }, - { - "name": "includeAsSponsor", - "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "includePrivate", - "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsActivityConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsListing","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipForViewerAsSponsor","args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipForViewerAsSponsorable","args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipNewsletters","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorship updates returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipNewsletterOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipNewsletterConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipsAsMaintainer","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "includePrivate", - "description": "Whether or not to include private sponsorships in the result set", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipsAsSponsor","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "maintainerLogins", - "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [ - { - "name": "slug", - "description": "The name or slug of the team to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teams","args": [ - { - "name": "privacy", - "description": "If non-null, filters teams according to privacy", - "type": { - "kind": "ENUM", - "name": "TeamPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "notificationSetting", - "description": "If non-null, filters teams according to notification setting", - "type": { - "kind": "ENUM", - "name": "TeamNotificationSetting", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "role", - "description": "If non-null, filters teams according to whether the viewer is an admin or member on team", - "type": { - "kind": "ENUM", - "name": "TeamRole", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "If non-null, filters teams with query on team name and team slug", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userLogins", - "description": "User logins to filter by", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for teams returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ldapMapped", - "description": "If true, filters teams that are mapped to an LDAP Group (Enterprise only)", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "rootTeamsOnly", - "description": "If true, restrict to only root teams", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalSponsorshipAmountAsSponsorInCents","args": [ - { - "name": "since", - "description": "Filter payments to those that occurred on or after this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "until", - "description": "Filter payments to those that occurred before this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogins", - "description": "Filter payments to those made to the users or organizations with the specified usernames.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": "[]" - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "twitterUsername","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanAdminister","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanChangePinnedItems","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanCreateProjects","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanCreateRepositories","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanCreateTeams","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSponsor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerIsAMember","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerIsFollowing","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerIsSponsoring","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "webCommitSignoffRequired","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "websiteUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "AnnouncementBanner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "MemberStatusable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "PackageOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProfileOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Owner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Recent", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryDiscussionAuthor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryDiscussionCommentAuthor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "OrganizationAuditEntry", - "description": "An audit entry in an organization audit log.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposClearAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OauthApplicationCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgAddBillingManagerAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgBlockUserAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableOauthAppRestrictionsAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableSamlAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableTwoFactorRequirementAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableOauthAppRestrictionsAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableSamlAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableTwoFactorRequirementAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteToBusinessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessApprovedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessBlockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessDeniedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessRequestedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessUnblockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveBillingManagerAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveOutsideCollaboratorAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUnblockUserAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoArchivedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoChangeMergeSettingAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigLockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoDestroyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddRepositoryAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamChangeParentTeamAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveRepositoryAuditEntry", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "OrganizationAuditEntryConnection", - "description": "The connection type for OrganizationAuditEntry.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationAuditEntryEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "OrganizationAuditEntry", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "description": "Metadata for an audit entry with action org.*", - "fields": [ - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposClearAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OauthApplicationCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgAddBillingManagerAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgBlockUserAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableOauthAppRestrictionsAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableSamlAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgDisableTwoFactorRequirementAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableOauthAppRestrictionsAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableSamlAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgEnableTwoFactorRequirementAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgInviteToBusinessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessApprovedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessBlockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessDeniedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessRequestedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessUnblockedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveBillingManagerAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRemoveOutsideCollaboratorAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUnblockUserAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoArchivedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoChangeMergeSettingAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigLockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoDestroyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddRepositoryAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamChangeParentTeamAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveRepositoryAuditEntry", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "OrganizationAuditEntryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "OrganizationAuditEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationConnection", - "description": "A list of organizations managed by an enterprise.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationEnterpriseOwnerConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationEnterpriseOwnerEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationEnterpriseOwnerEdge", - "description": "An enterprise owner in the context of an organization that is part of the enterprise.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationRole","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RoleInOrganization", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationIdentityProvider", - "description": "An Identity Provider configured to provision SAML and SCIM identities for Organizations. Visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members.", - "fields": [ - { - "name": "digestMethod","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "externalIdentities","args": [ - { - "name": "membersOnly", - "description": "Filter to external identities with valid org membership only", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "login", - "description": "Filter to external identities with the users login", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userName", - "description": "Filter to external identities with the users userName/NameID attribute", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ExternalIdentityConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "idpCertificate","args": [], - "type": { - "kind": "SCALAR", - "name": "X509Certificate", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issuer","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signatureMethod","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ssoUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "description": "An Invitation for a user to an organization.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitationSource","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrganizationInvitationSource", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitationType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrganizationInvitationType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitee","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "inviter","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "`inviter` will be removed. `inviter` will be replaced by `inviterActor`. Removal on 2024-07-01 UTC." - }, - { - "name": "inviterActor","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "role","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrganizationInvitationRole", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationInvitationConnection", - "description": "The connection type for OrganizationInvitation.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationInvitationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationInvitationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrganizationInvitationRole", - "description": "The possible organization invitation roles.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DIRECT_MEMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BILLING_MANAGER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REINSTATE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrganizationInvitationSource", - "description": "The possible organization invitation sources.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "UNKNOWN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MEMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SCIM","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrganizationInvitationType", - "description": "The possible organization invitation types.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "USER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EMAIL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationMemberConnection", - "description": "A list of users who belong to the organization.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationMemberEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationMemberEdge", - "description": "Represents a user within an organization.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasTwoFactorEnabled","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "role","args": [], - "type": { - "kind": "ENUM", - "name": "OrganizationMemberRole", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrganizationMemberRole", - "description": "The possible roles within an organization for its members.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MEMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrganizationMembersCanCreateRepositoriesSettingValue", - "description": "The possible values for the members can create repositories setting on an organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationMigration", - "description": "A GitHub Enterprise Importer (GEI) organization migration.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "failureReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "remainingRepositoriesCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sourceOrgName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sourceOrgUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrganizationMigrationState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "targetOrgName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalRepositoriesCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrganizationMigrationState", - "description": "The Octoshift Organization migration state.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NOT_STARTED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "QUEUED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN_PROGRESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRE_REPO_MIGRATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REPO_MIGRATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "POST_REPO_MIGRATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUCCEEDED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING_VALIDATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILED_VALIDATION","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "OrganizationOrUser", - "description": "Used for argument of CreateProjectV2 mutation.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "description": "Ordering options for organization connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrganizationOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "OrganizationOrderField", - "description": "Properties by which organization connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LOGIN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationTeamsHovercardContext", - "description": "An organization teams hovercard context", - "fields": [ - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "octicon","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "relevantTeams","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalTeamCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "HovercardContext", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "OrganizationsHovercardContext", - "description": "An organization list hovercard context", - "fields": [ - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "octicon","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "relevantOrganizations","args": [ - { - "name": "orderBy", - "description": "Ordering options for the User's organizations.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalOrganizationCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "HovercardContext", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Package", - "description": "Information for an uploaded package.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "latestVersion","args": [], - "type": { - "kind": "OBJECT", - "name": "PackageVersion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "packageType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PackageType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "statistics","args": [], - "type": { - "kind": "OBJECT", - "name": "PackageStatistics", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "version","args": [ - { - "name": "version", - "description": "The package version.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PackageVersion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "versions","args": [ - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PackageVersionOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageVersionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageConnection", - "description": "The connection type for Package.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Package", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Package", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageFile", - "description": "A file in a package version.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "md5","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "packageVersion","args": [], - "type": { - "kind": "OBJECT", - "name": "PackageVersion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sha1","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sha256","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "size","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageFileConnection", - "description": "The connection type for PackageFile.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageFileEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageFile", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageFileEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PackageFile", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "PackageFileOrder", - "description": "Ways in which lists of package files can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "ENUM", - "name": "PackageFileOrderField", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PackageFileOrderField", - "description": "Properties by which package file connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "PackageOrder", - "description": "Ways in which lists of packages can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "ENUM", - "name": "PackageOrderField", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PackageOrderField", - "description": "Properties by which package connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "PackageOwner", - "description": "Represents an owner of a package.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "packages","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "names", - "description": "Find packages by their names.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "description": "Find packages in a repository by ID.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "packageType", - "description": "Filter registry package by type.", - "type": { - "kind": "ENUM", - "name": "PackageType", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PackageOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "PackageStatistics", - "description": "Represents a object that contains package activity statistics such as downloads.", - "fields": [ - { - "name": "downloadsTotalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageTag", - "description": "A version tag contains the mapping between a tag name and a version.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "version","args": [], - "type": { - "kind": "OBJECT", - "name": "PackageVersion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PackageType", - "description": "The possible types of a package.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NPM","isDeprecated": True, - "deprecationReason": "NPM will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC." - }, - { - "name": "RUBYGEMS","isDeprecated": True, - "deprecationReason": "RUBYGEMS will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-12-28 UTC." - }, - { - "name": "MAVEN","isDeprecated": True, - "deprecationReason": "MAVEN will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2023-02-10 UTC." - }, - { - "name": "DOCKER","isDeprecated": True, - "deprecationReason": "DOCKER will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2021-06-21 UTC." - }, - { - "name": "DEBIAN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NUGET","isDeprecated": True, - "deprecationReason": "NUGET will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC." - }, - { - "name": "PYPI","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageVersion", - "description": "Information about a specific package version.", - "fields": [ - { - "name": "files","args": [ - { - "name": "orderBy", - "description": "Ordering of the returned package files.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PackageFileOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageFileConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "package","args": [], - "type": { - "kind": "OBJECT", - "name": "Package", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "platform","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "preRelease","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "readme","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "release","args": [], - "type": { - "kind": "OBJECT", - "name": "Release", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "statistics","args": [], - "type": { - "kind": "OBJECT", - "name": "PackageVersionStatistics", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "summary","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "version","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageVersionConnection", - "description": "The connection type for PackageVersion.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageVersionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageVersion", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageVersionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PackageVersion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "PackageVersionOrder", - "description": "Ways in which lists of package versions can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "ENUM", - "name": "PackageVersionOrderField", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PackageVersionOrderField", - "description": "Properties by which package version connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PackageVersionStatistics", - "description": "Represents a object that contains package version activity statistics such as downloads.", - "fields": [ - { - "name": "downloadsTotalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PageInfo", - "description": "Information about pagination in a connection.", - "fields": [ - { - "name": "endCursor","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasNextPage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasPreviousPage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startCursor","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PatchStatus", - "description": "The possible types of patch statuses.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ADDED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DELETED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RENAMED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COPIED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MODIFIED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CHANGED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "PermissionGranter", - "description": "Types that can grant permissions on a repository to a user", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "PermissionSource", - "description": "A level of permission and source for a user's access to a repository.", - "fields": [ - { - "name": "organization","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permission","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DefaultRepositoryPermissionField", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "roleName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "source","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "PermissionGranter", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "PinIssueInput", - "description": "Autogenerated input type of PinIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "issueId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinIssuePayload", - "description": "Autogenerated return type of PinIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "PinnableItem", - "description": "Types that can be pinned to a profile page.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Gist", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "description": "The connection type for PinnableItem.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnableItemEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "PinnableItem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinnableItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "PinnableItem", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PinnableItemType", - "description": "Represents items that can be pinned to a profile page or dashboard.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "REPOSITORY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GIST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ISSUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PROJECT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "USER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ORGANIZATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TEAM","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinnedDiscussion", - "description": "A Pinned Discussion is a discussion pinned to a repository's index page.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "gradientStopColors","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pattern","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PinnedDiscussionPattern", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedBy","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "preconfiguredGradient","args": [], - "type": { - "kind": "ENUM", - "name": "PinnedDiscussionGradient", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinnedDiscussionConnection", - "description": "The connection type for PinnedDiscussion.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnedDiscussionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnedDiscussion", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinnedDiscussionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PinnedDiscussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PinnedDiscussionGradient", - "description": "Preconfigured gradients that may be used to style discussions pinned within a repository.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "RED_ORANGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BLUE_MINT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BLUE_PURPLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PINK_BLUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PURPLE_CORAL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PinnedDiscussionPattern", - "description": "Preconfigured background patterns that may be used to style discussions pinned within a repository.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DOT_FILL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PLUS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ZAP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CHEVRON_UP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DOT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HEART_FILL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinnedEvent", - "description": "Represents a 'pinned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinnedIssue", - "description": "A Pinned Issue is a issue pinned to a repository's index page.", - "fields": [ - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDatabaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedBy","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinnedIssueConnection", - "description": "The connection type for PinnedIssue.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnedIssueEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnedIssue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PinnedIssueEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PinnedIssue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "PreciseDateTime", - "description": "An ISO-8601 encoded UTC date string with millisecond precision.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingDisableAuditEntry", - "description": "Audit log entry for a private_repository_forking.disable event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingEnableAuditEntry", - "description": "Audit log entry for a private_repository_forking.enable event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProfileItemShowcase", - "description": "A curatable list of repositories relating to a repository owner, which defaults to showing the most popular repositories they own.", - "fields": [ - { - "name": "hasPinnedItems","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "items","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "ProfileOwner", - "description": "Represents any entity on GitHub that has a profile page.", - "fields": [ - { - "name": "anyPinnableItems","args": [ - { - "name": "type", - "description": "Filter to only a particular kind of pinnable item.", - "type": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "itemShowcase","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProfileItemShowcase", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "location","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnableItems","args": [ - { - "name": "types", - "description": "Filter the types of pinnable items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedItems","args": [ - { - "name": "types", - "description": "Filter the types of pinned items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedItemsRemaining","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanChangePinnedItems","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "websiteUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "Project", - "description": "Projects manage issues, pull requests and notes within a project owner.", - "fields": [ - { - "name": "body","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "columns","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectColumnConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "ProjectOwner", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pendingCards","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "archivedStates", - "description": "A list of archived states to filter the cards by", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectCardArchivedState", - "ofType": None - } - }, - "defaultValue": "[ARCHIVED, NOT_ARCHIVED]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCardConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "progress","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectProgress", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanClose","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReopen","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Closable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectCard", - "description": "A card in a project.", - "fields": [ - { - "name": "column","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectColumn", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "content","args": [], - "type": { - "kind": "UNION", - "name": "ProjectCardItem", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isArchived","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "note","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "ENUM", - "name": "ProjectCardState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectCardArchivedState", - "description": "The possible archived states of a project card.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ARCHIVED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NOT_ARCHIVED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectCardConnection", - "description": "The connection type for ProjectCard.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCardEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCard", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectCardEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectCard", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCardImport", - "description": "An issue or PR and its owning repository to be used in a project card.", - "fields": None, - "inputFields": [ - { - "name": "repository","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "number","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "ProjectCardItem", - "description": "Types that can be inside Project Cards.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "ENUM", - "name": "ProjectCardState", - "description": "Various content states of a ProjectCard", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CONTENT_ONLY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NOTE_ONLY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REDACTED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectColumn", - "description": "A column inside a project.", - "fields": [ - { - "name": "cards","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "archivedStates", - "description": "A list of archived states to filter the cards by", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectCardArchivedState", - "ofType": None - } - }, - "defaultValue": "[ARCHIVED, NOT_ARCHIVED]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCardConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "purpose","args": [], - "type": { - "kind": "ENUM", - "name": "ProjectColumnPurpose", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectColumnConnection", - "description": "The connection type for ProjectColumn.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectColumnEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectColumn", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectColumnEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectColumn", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectColumnImport", - "description": "A project column and a list of its issues and PRs.", - "fields": None, - "inputFields": [ - { - "name": "columnName","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "position","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "issues","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCardImport", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectColumnPurpose", - "description": "The semantic purpose of the column - todo, in progress, or done.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TODO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN_PROGRESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DONE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectConnection", - "description": "A list of projects associated with the owner.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectOrder", - "description": "Ways in which lists of projects can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectOrderField", - "description": "Properties by which project connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "ProjectOwner", - "description": "Represents an owner of a Project.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [ - { - "name": "number", - "description": "The project number to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projects","args": [ - { - "name": "orderBy", - "description": "Ordering options for projects returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "search", - "description": "Query to search projects by, currently only searching by name.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the projects by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanCreateProjects","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ProjectProgress", - "description": "Project progress stats.", - "fields": [ - { - "name": "doneCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "donePercentage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "inProgressCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "inProgressPercentage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "todoCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "todoPercentage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectState", - "description": "State of the project; either 'open' or 'closed'", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectTemplate", - "description": "GitHub-provided templates for Projects", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "BASIC_KANBAN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTOMATED_KANBAN_V2","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTOMATED_REVIEWS_KANBAN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BUG_TRIAGE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2", - "description": "New projects that manage issues, pull requests and drafts using tables and boards.", - "fields": [ - { - "name": "closed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [ - { - "name": "name", - "description": "The name of the field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fields","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 fields returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "items","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 items returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ItemOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "ProjectV2Owner", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "public","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "readme","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositories","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "shortDescription","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teams","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for teams returned from this connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamOrder", - "ofType": None - }, - "defaultValue": "{field: NAME, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "template","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "view","args": [ - { - "name": "number", - "description": "The number of a view belonging to the project", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2View", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanClose","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReopen","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "views","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 views returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ViewOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ViewConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "workflow","args": [ - { - "name": "number", - "description": "The number of a workflow belonging to the project", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Workflow", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "workflows","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 workflows returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2WorkflowOrder", - "ofType": None - }, - "defaultValue": "{field: NAME, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2WorkflowConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Closable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "ProjectV2Actor", - "description": "Possible collaborators for a project.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ProjectV2ActorConnection", - "description": "The connection type for ProjectV2Actor.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ActorEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2Actor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ActorEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "ProjectV2Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Collaborator", - "description": "A collaborator to update on a project. Only one of the userId or teamId should be provided.", - "fields": None, - "inputFields": [ - { - "name": "userId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "teamId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "role","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2Roles", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "description": "The connection type for ProjectV2.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Edge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2CustomFieldType", - "description": "The type of a project field.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TEXT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SINGLE_SELECT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NUMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DATE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2Edge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2Field", - "description": "A field inside a project.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dataType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2FieldType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2FieldCommon", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2FieldCommon", - "description": "Common fields across different project field types", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dataType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2FieldType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ProjectV2Field", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationField", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectField", - "ofType": None - } - ] - }, - { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "description": "Configurations for project fields.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ProjectV2Field", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationField", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectField", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationConnection", - "description": "The connection type for ProjectV2FieldConfiguration.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2FieldConnection", - "description": "The connection type for ProjectV2Field.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2FieldEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Field", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2FieldEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Field", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "description": "Ordering options for project v2 field connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2FieldOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2FieldOrderField", - "description": "Properties by which project v2 field connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "POSITION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2FieldType", - "description": "The type of a project field.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ASSIGNEES","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LINKED_PULL_REQUESTS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REVIEWERS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LABELS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MILESTONE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REPOSITORY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TITLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TEXT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SINGLE_SELECT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NUMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ITERATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TRACKS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TRACKED_BY","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldValue", - "description": "The values that can be used to update a field of an item inside a Project. Only 1 value can be updated at a time.", - "fields": None, - "inputFields": [ - { - "name": "text","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "number","type": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "date","type": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "singleSelectOptionId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "iterationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Filters", - "description": "Ways in which to filter lists of projects.", - "fields": None, - "inputFields": [ - { - "name": "state","type": { - "kind": "ENUM", - "name": "ProjectV2State", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2Item", - "description": "An item within a Project.", - "fields": [ - { - "name": "content","args": [], - "type": { - "kind": "UNION", - "name": "ProjectV2ItemContent", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fieldValueByName","args": [ - { - "name": "name", - "description": "The name of the field to return the field value of", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "UNION", - "name": "ProjectV2ItemFieldValue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fieldValues","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 item field values returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ItemFieldValueOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldValueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDatabaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isArchived","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "type","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2ItemType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemConnection", - "description": "The connection type for ProjectV2Item.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ItemEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "ProjectV2ItemContent", - "description": "Types that can be inside Project Items.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "DraftIssue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldDateValue", - "description": "The value of a date field in a Project item.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "date","args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2ItemFieldValueCommon", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldIterationValue", - "description": "The value of an iteration field in a Project item.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "duration","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "iterationId","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startDate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "titleHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2ItemFieldValueCommon", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldLabelValue", - "description": "The value of the labels field in a Project item.", - "fields": [ - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labels","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldMilestoneValue", - "description": "The value of a milestone field in a Project item.", - "fields": [ - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "milestone","args": [], - "type": { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldNumberValue", - "description": "The value of a number field in a Project item.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2ItemFieldValueCommon", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldPullRequestValue", - "description": "The value of a pull request field in a Project item.", - "fields": [ - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequests","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PullRequestOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequestConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldRepositoryValue", - "description": "The value of a repository field in a Project item.", - "fields": [ - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldReviewerValue", - "description": "The value of a reviewers field in a Project item.", - "fields": [ - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RequestedReviewerConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldSingleSelectValue", - "description": "The value of a single select field in a Project item.", - "fields": [ - { - "name": "color","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2SingleSelectFieldOptionColor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "descriptionHTML","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nameHTML","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "optionId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2ItemFieldValueCommon", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldTextValue", - "description": "The value of a text field in a Project item.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "text","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2ItemFieldValueCommon", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldUserValue", - "description": "The value of a user field in a Project item.", - "fields": [ - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "users","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "ProjectV2ItemFieldValue", - "description": "Project field values", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldDateValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldIterationValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldLabelValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldMilestoneValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldNumberValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldPullRequestValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldRepositoryValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldReviewerValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldSingleSelectValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldTextValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldUserValue", - "ofType": None - } - ] - }, - { - "kind": "INTERFACE", - "name": "ProjectV2ItemFieldValueCommon", - "description": "Common fields across different project field value types", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldDateValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldIterationValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldNumberValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldSingleSelectValue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldTextValue", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldValueConnection", - "description": "The connection type for ProjectV2ItemFieldValue.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldValueEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2ItemFieldValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldValueEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "ProjectV2ItemFieldValue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ItemFieldValueOrder", - "description": "Ordering options for project v2 item field value connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2ItemFieldValueOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2ItemFieldValueOrderField", - "description": "Properties by which project v2 item field value connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "POSITION","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ItemOrder", - "description": "Ordering options for project v2 item connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2ItemOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2ItemOrderField", - "description": "Properties by which project v2 item connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "POSITION","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2ItemType", - "description": "The type of a project item.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ISSUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DRAFT_ISSUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REDACTED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationField", - "description": "An iteration field inside a project.", - "fields": [ - { - "name": "configuration","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dataType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2FieldType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2FieldCommon", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldConfiguration", - "description": "Iteration field configuration for a project.", - "fields": [ - { - "name": "completedIterations","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldIteration", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "duration","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "iterations","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldIteration", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startDay","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldIteration", - "description": "Iteration field iteration settings for a project.", - "fields": [ - { - "name": "duration","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startDate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "titleHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "description": "Ways in which lists of projects can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2OrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2OrderField", - "description": "Properties by which projects can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TITLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NUMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Owner", - "description": "Represents an owner of a project.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsV2","args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "ofType": None - }, - "defaultValue": "{field: NUMBER, direction: DESC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Recent", - "description": "Recent projects for the owner.", - "fields": [ - { - "name": "recentProjects","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "ENUM", - "name": "ProjectV2Roles", - "description": "The possible roles of a collaborator on a project.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "READER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WRITER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectField", - "description": "A single select field inside a project.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dataType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2FieldType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "options","args": [ - { - "name": "names", - "description": "Filter returned options to only those matching these names, case insensitive.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectFieldOption", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2FieldCommon", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectFieldOption", - "description": "Single select field option for a configuration for a project.", - "fields": [ - { - "name": "color","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2SingleSelectFieldOptionColor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "descriptionHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nameHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2SingleSelectFieldOptionColor", - "description": "The display color of a single-select field option.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "GRAY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BLUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GREEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "YELLOW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ORANGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PINK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PURPLE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2SingleSelectFieldOptionInput", - "description": "Represents a single select field option", - "fields": None, - "inputFields": [ - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "color","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2SingleSelectFieldOptionColor", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortBy", - "description": "Represents a sort by field and direction.", - "fields": [ - { - "name": "direction","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Field", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByConnection", - "description": "The connection type for ProjectV2SortBy.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2SortByEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2SortBy", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2SortBy", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByField", - "description": "Represents a sort by field and direction.", - "fields": [ - { - "name": "direction","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "field","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByFieldConnection", - "description": "The connection type for ProjectV2SortByField.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2SortByFieldEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2SortByField", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByFieldEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2SortByField", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2State", - "description": "The possible states of a project v2.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2View", - "description": "A view within a ProjectV2.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fields","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "filter","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "groupBy","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2FieldConnection", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "The `ProjectV2View#order_by` API is deprecated in favour of the more capable `ProjectV2View#group_by_field` API. Check out the `ProjectV2View#group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC." - }, - { - "name": "groupByFields","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "layout","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2ViewLayout", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sortBy","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2SortByConnection", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "The `ProjectV2View#sort_by` API is deprecated in favour of the more capable `ProjectV2View#sort_by_fields` API. Check out the `ProjectV2View#sort_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC." - }, - { - "name": "sortByFields","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2SortByFieldConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "verticalGroupBy","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2FieldConnection", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "The `ProjectV2View#vertical_group_by` API is deprecated in favour of the more capable `ProjectV2View#vertical_group_by_fields` API. Check out the `ProjectV2View#vertical_group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC." - }, - { - "name": "verticalGroupByFields","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibleFields","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "ofType": None - }, - "defaultValue": "{field: POSITION, direction: ASC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2FieldConnection", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "The `ProjectV2View#visibleFields` API is deprecated in favour of the more capable `ProjectV2View#fields` API. Check out the `ProjectV2View#fields` API as an example for the more capable alternative. Removal on 2023-01-01 UTC." - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ViewConnection", - "description": "The connection type for ProjectV2View.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ViewEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2View", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2ViewEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2View", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2ViewLayout", - "description": "The layout of a project v2 view.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "BOARD_LAYOUT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TABLE_LAYOUT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ROADMAP_LAYOUT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ViewOrder", - "description": "Ordering options for project v2 view connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2ViewOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2ViewOrderField", - "description": "Properties by which project v2 view connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "POSITION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2Workflow", - "description": "A workflow inside a project.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2WorkflowConnection", - "description": "The connection type for ProjectV2Workflow.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2WorkflowEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Workflow", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2WorkflowEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Workflow", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2WorkflowOrder", - "description": "Ordering options for project v2 workflows connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2WorkflowsOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ProjectV2WorkflowsOrderField", - "description": "Properties by which project workflows can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NUMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PropertyTargetDefinition", - "description": "A property that must match", - "fields": [ - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "propertyValues","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "PropertyTargetDefinitionInput", - "description": "A property that must match", - "fields": None, - "inputFields": [ - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "propertyValues","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PublicKey", - "description": "A user's public key.", - "fields": [ - { - "name": "accessedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fingerprint","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isReadOnly","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "key","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PublicKeyConnection", - "description": "The connection type for PublicKey.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PublicKeyEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PublicKeyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "PublishSponsorsTierInput", - "description": "Autogenerated input type of PublishSponsorsTier", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "tierId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PublishSponsorsTierPayload", - "description": "Autogenerated return type of PublishSponsorsTier", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsTier","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "description": "A repository pull request.", - "fields": [ - { - "name": "activeLockReason","args": [], - "type": { - "kind": "ENUM", - "name": "LockReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "additions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assignees","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "autoMergeRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "AutoMergeRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "baseRef","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "baseRefName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "baseRefOid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "baseRepository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "canBeRebased","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "changedFiles","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "checksResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "checksUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closingIssuesReferences","args": [ - { - "name": "userLinkedOnly", - "description": "Return only manually linked Issues", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "IssueConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comments","args": [ - { - "name": "orderBy", - "description": "Ordering options for issue comments returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueCommentOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestCommitConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC." - }, - { - "name": "deletions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "files","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequestChangedFileConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDatabaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headRef","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headRefName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headRefOid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headRepository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "headRepositoryOwner","args": [], - "type": { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hovercard","args": [ - { - "name": "includeNotificationContexts", - "description": "Whether or not to include notification contexts", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Hovercard", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCrossRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDraft","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isInMergeQueue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMergeQueueEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isReadByViewer","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labels","args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "LabelOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "latestOpinionatedReviews","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "writersOnly", - "description": "Only return reviews from user who have write access to the repository", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "latestReviews","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "locked","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "maintainerCanModify","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeQueue","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeQueueEntry","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueueEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeStateStatus","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MergeStateStatus", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MergeableState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "merged","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergedBy","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "milestone","args": [], - "type": { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "participants","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permalink","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "potentialMergeCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectCards","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "archivedStates", - "description": "A list of archived states to filter the cards by", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectCardArchivedState", - "ofType": None - } - }, - "defaultValue": "[ARCHIVED, NOT_ARCHIVED]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectCardConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectItems","args": [ - { - "name": "includeArchived", - "description": "Include archived items.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsV2","args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "ofType": None - }, - "defaultValue": "{field: NUMBER, direction: DESC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "revertResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "revertUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewDecision","args": [], - "type": { - "kind": "ENUM", - "name": "PullRequestReviewDecision", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewRequests","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ReviewRequestConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewThreads","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewThreadConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviews","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the reviews.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "author", - "description": "Filter by author of the review.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "statusCheckRollup","args": [], - "type": { - "kind": "OBJECT", - "name": "StatusCheckRollup", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "suggestedReviewers","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SuggestedReviewer", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "timeline","args": [ - { - "name": "since", - "description": "Allows filtering timeline events by a `since` timestamp.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestTimelineConnection", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "`timeline` will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC." - }, - { - "name": "timelineItems","args": [ - { - "name": "since", - "description": "Filter timeline items by a `since` timestamp.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "skip", - "description": "Skips the first _n_ elements in the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "itemTypes", - "description": "Filter timeline items by type.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestTimelineItemsItemType", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestTimelineItemsConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "titleHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCommentsCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanApplySuggestion","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanClose","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDeleteHeadRef","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDisableAutoMerge","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanEditFiles","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanEnableAutoMerge","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMergeAsAdmin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReopen","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSubscribe","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdateBranch","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerLatestReview","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerLatestReviewRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "ReviewRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerMergeBodyText","args": [ - { - "name": "mergeType", - "description": "The merge method for the message.", - "type": { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerMergeHeadlineText","args": [ - { - "name": "mergeType", - "description": "The merge method for the message.", - "type": { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerSubscription","args": [], - "type": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Assignable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Closable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Labelable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Lockable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Owner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestBranchUpdateMethod", - "description": "The possible methods for updating a pull request's head branch with the base branch.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MERGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REBASE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestChangedFile", - "description": "A file changed in a pull request.", - "fields": [ - { - "name": "additions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "changeType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PatchStatus", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerViewedState","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "FileViewedState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestChangedFileConnection", - "description": "The connection type for PullRequestChangedFile.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestChangedFileEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestChangedFile", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestChangedFileEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestChangedFile", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommit", - "description": "Represents a Git commit part of a pull request.", - "fields": [ - { - "name": "commit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitCommentThread", - "description": "Represents a commit comment thread part of a pull request.", - "fields": [ - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "position","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitConnection", - "description": "The connection type for PullRequestCommit.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestCommitEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestCommit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestCommit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestConnection", - "description": "The connection type for PullRequest.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestContributionsByRepository", - "description": "This aggregates pull requests opened by a user within one repository.", - "fields": [ - { - "name": "contributions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "ofType": None - }, - "defaultValue": "{direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "description": "Represents available types of methods to use when merging a pull request.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MERGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SQUASH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REBASE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "PullRequestOrder", - "description": "Ways in which lists of issues can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestOrderField", - "description": "Properties by which pull_requests connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestParameters", - "description": "Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.", - "fields": [ - { - "name": "dismissStaleReviewsOnPush","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requireCodeOwnerReview","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requireLastPushApproval","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiredApprovingReviewCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiredReviewThreadResolution","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "PullRequestParametersInput", - "description": "Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.", - "fields": None, - "inputFields": [ - { - "name": "dismissStaleReviewsOnPush","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "requireCodeOwnerReview","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "requireLastPushApproval","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "requiredApprovingReviewCount","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "requiredReviewThreadResolution","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "description": "A review object for a given pull request.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorCanPushToRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC." - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDatabaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMinimized","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizedReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "onBehalfOf","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "submittedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMinimize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Minimizable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "description": "A review comment associated with a given repository pull request.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC." - }, - { - "name": "diffHunk","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "draftedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDatabaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMinimized","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "line","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "minimizedReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "originalCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "originalLine","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "originalPosition","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "We are phasing out diff-relative positioning for PR comments Removal on 2023-10-01 UTC." - }, - { - "name": "originalStartLine","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "outdated","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "position","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "We are phasing out diff-relative positioning for PR comments Use the `line` and `startLine` fields instead, which are file line numbers instead of diff line numbers Removal on 2023-10-01 UTC." - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReview","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "replyTo","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startLine","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewCommentState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subjectType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanMinimize","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Minimizable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewCommentConnection", - "description": "The connection type for PullRequestReviewComment.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewCommentEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestReviewCommentState", - "description": "The possible states of a pull request review comment.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBMITTED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewConnection", - "description": "The connection type for PullRequestReview.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewContributionsByRepository", - "description": "This aggregates pull request reviews made by a user within one repository.", - "fields": [ - { - "name": "contributions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "ofType": None - }, - "defaultValue": "{direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestReviewDecision", - "description": "The review status of a pull request.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CHANGES_REQUESTED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "APPROVED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REVIEW_REQUIRED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestReviewEvent", - "description": "The possible events to perform on a pull request review.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "COMMENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "APPROVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REQUEST_CHANGES","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISMISS","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestReviewState", - "description": "The possible states of a pull request review.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMENTED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "APPROVED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CHANGES_REQUESTED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISMISSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "description": "A threaded list of comments for a given pull request.", - "fields": [ - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "skip", - "description": "Skips the first _n_ elements in the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "diffSide","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DiffSide", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCollapsed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isOutdated","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isResolved","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "line","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "originalLine","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "originalStartLine","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resolvedBy","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startDiffSide","args": [], - "type": { - "kind": "ENUM", - "name": "DiffSide", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startLine","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subjectType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReply","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanResolve","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUnresolve","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThreadConnection", - "description": "Review comment threads for a pull request review.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewThreadEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThreadEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "description": "The possible subject types of a pull request review comment.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LINE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FILE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestRevisionMarker", - "description": "Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastSeenCommit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestState", - "description": "The possible states of a pull request.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MERGED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestTemplate", - "description": "A repository pull request template.", - "fields": [ - { - "name": "body","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "filename","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestThread", - "description": "A threaded list of comments for a given pull request.", - "fields": [ - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "skip", - "description": "Skips the first _n_ elements in the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "diffSide","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DiffSide", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCollapsed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isOutdated","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isResolved","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "line","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resolvedBy","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startDiffSide","args": [], - "type": { - "kind": "ENUM", - "name": "DiffSide", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "startLine","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subjectType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReply","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanResolve","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUnresolve","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestTimelineConnection", - "description": "The connection type for PullRequestTimelineItem.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestTimelineItemEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "PullRequestTimelineItem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "PullRequestTimelineItem", - "description": "An item in a pull request timeline", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AssignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BaseRefDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BaseRefForcePushedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ClosedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommitCommentThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CrossReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DemilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeployedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeploymentEnvironmentChangedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefForcePushedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefRestoredEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MergedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RenamedTitleEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReopenedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewDismissedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestRemovedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnassignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnsubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UserBlockedEvent", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "PullRequestTimelineItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "PullRequestTimelineItem", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "PullRequestTimelineItems", - "description": "An item in a pull request timeline", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AddedToMergeQueueEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AddedToProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AssignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutoMergeDisabledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutoMergeEnabledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutoRebaseEnabledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutoSquashEnabledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutomaticBaseChangeFailedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "AutomaticBaseChangeSucceededEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BaseRefChangedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BaseRefDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "BaseRefForcePushedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ClosedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommentDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConnectedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertToDraftEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertedNoteToIssueEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertedToDiscussionEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CrossReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DemilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeployedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DeploymentEnvironmentChangedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DisconnectedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefDeletedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefForcePushedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "HeadRefRestoredEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "LockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MarkedAsDuplicateEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MentionedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MergedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MilestonedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MovedColumnsInProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PinnedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitCommentThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestRevisionMarker", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReadyForReviewEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RemovedFromMergeQueueEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RemovedFromProjectEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RenamedTitleEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReopenedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewDismissedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestRemovedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "SubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TransferredEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnassignedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlabeledEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnlockedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnmarkedAsDuplicateEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnpinnedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UnsubscribedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UserBlockedEvent", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "PullRequestTimelineItemsConnection", - "description": "The connection type for PullRequestTimelineItems.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestTimelineItemsEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "filteredCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "PullRequestTimelineItems", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PullRequestTimelineItemsEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "PullRequestTimelineItems", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestTimelineItemsItemType", - "description": "The possible item types found in a timeline.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PULL_REQUEST_COMMIT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST_COMMIT_COMMENT_THREAD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST_REVIEW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST_REVIEW_THREAD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST_REVISION_MARKER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTOMATIC_BASE_CHANGE_FAILED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTOMATIC_BASE_CHANGE_SUCCEEDED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTO_MERGE_DISABLED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTO_MERGE_ENABLED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTO_REBASE_ENABLED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTO_SQUASH_ENABLED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BASE_REF_CHANGED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BASE_REF_FORCE_PUSHED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BASE_REF_DELETED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DEPLOYED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DEPLOYMENT_ENVIRONMENT_CHANGED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HEAD_REF_DELETED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HEAD_REF_FORCE_PUSHED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HEAD_REF_RESTORED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MERGED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REVIEW_DISMISSED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REVIEW_REQUESTED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REVIEW_REQUEST_REMOVED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "READY_FOR_REVIEW_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONVERT_TO_DRAFT_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADDED_TO_MERGE_QUEUE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REMOVED_FROM_MERGE_QUEUE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ISSUE_COMMENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CROSS_REFERENCED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ADDED_TO_PROJECT_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ASSIGNED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMENT_DELETED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONNECTED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONVERTED_NOTE_TO_ISSUE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONVERTED_TO_DISCUSSION_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DEMILESTONED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISCONNECTED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LABELED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LOCKED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MARKED_AS_DUPLICATE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MENTIONED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MILESTONED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MOVED_COLUMNS_IN_PROJECT_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PINNED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REFERENCED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REMOVED_FROM_PROJECT_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RENAMED_TITLE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REOPENED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIBED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TRANSFERRED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNASSIGNED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNLABELED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNLOCKED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "USER_BLOCKED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNMARKED_AS_DUPLICATE_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNPINNED_EVENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNSUBSCRIBED_EVENT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "PullRequestUpdateState", - "description": "The possible target states when updating a pull request.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Push", - "description": "A Git push.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nextSha","args": [], - "type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permalink","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "previousSha","args": [], - "type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pusher","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PushAllowance", - "description": "A team, user, or app who has the ability to push to a protected branch.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "PushAllowanceActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "branchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "PushAllowanceActor", - "description": "Types that can be an actor.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "PushAllowanceConnection", - "description": "The connection type for PushAllowance.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PushAllowanceEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PushAllowance", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "PushAllowanceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "PushAllowance", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Query", - "description": "The query root of GitHub's GraphQL interface.", - "fields": [ - { - "name": "codeOfConduct","args": [ - { - "name": "key", - "description": "The code of conduct's key", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "CodeOfConduct", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "codesOfConduct","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CodeOfConduct", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [ - { - "name": "slug", - "description": "The enterprise URL slug.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "invitationToken", - "description": "The enterprise invitation token.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseAdministratorInvitation","args": [ - { - "name": "userLogin", - "description": "The login of the user invited to join the business.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "enterpriseSlug", - "description": "The slug of the enterprise the user was invited to join.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "role", - "description": "The role for the business member invitation.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseAdministratorInvitationByToken","args": [ - { - "name": "invitationToken", - "description": "The invitation token sent with the invitation email.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "license","args": [ - { - "name": "key", - "description": "The license's downcased SPDX ID", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "License", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "licenses","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "License", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "marketplaceCategories","args": [ - { - "name": "includeCategories", - "description": "Return only the specified categories.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "excludeEmpty", - "description": "Exclude categories with no listings.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "excludeSubcategories", - "description": "Returns top level categories only, excluding any subcategories.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MarketplaceCategory", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "marketplaceCategory","args": [ - { - "name": "slug", - "description": "The URL slug of the category.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "useTopicAliases", - "description": "Also check topic aliases for the category slug", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MarketplaceCategory", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "marketplaceListing","args": [ - { - "name": "slug", - "description": "Select the listing that matches this slug. It's the short name of the listing used in its URL.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MarketplaceListing", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "marketplaceListings","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "categorySlug", - "description": "Select only listings with the given category.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "useTopicAliases", - "description": "Also check topic aliases for the category slug", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "viewerCanAdmin", - "description": "Select listings to which user has admin access. If omitted, listings visible to the\\nviewer are returned.\\n", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "adminId", - "description": "Select listings that can be administered by the specified user.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId", - "description": "Select listings for products owned by the specified organization.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "allStates", - "description": "Select listings visible to the viewer even if they are not approved. If omitted or\\nfalse, only approved listings will be returned.\\n", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "slugs", - "description": "Select the listings with these slugs, if they are visible to the viewer.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "primaryCategoryOnly", - "description": "Select only listings where the primary category matches the given category slug.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "withFreeTrialsOnly", - "description": "Select only listings that offer a free trial.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MarketplaceListingConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "meta","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GitHubMetadata", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [ - { - "name": "id", - "description": "ID of the object.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [ - { - "name": "ids", - "description": "The list of node IDs.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [ - { - "name": "login", - "description": "The organization's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rateLimit","args": [ - { - "name": "dryRun", - "description": "If true, calculate the cost for the query without evaluating it", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "OBJECT", - "name": "RateLimit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "relay","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Query", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [ - { - "name": "owner", - "description": "The login field of a user or organization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name", - "description": "The name of the repository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "followRenames", - "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryOwner","args": [ - { - "name": "login", - "description": "The username to lookup the owner by.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resource","args": [ - { - "name": "url", - "description": "The URL.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "search","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "type", - "description": "The types of search items to search within.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SearchType", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SearchResultItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "securityAdvisories","args": [ - { - "name": "orderBy", - "description": "Ordering options for the returned topics.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SecurityAdvisoryOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - }, - { - "name": "identifier", - "description": "Filter advisories by identifier, e.g. GHSA or CVE.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SecurityAdvisoryIdentifierFilter", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "publishedSince", - "description": "Filter advisories to those published since a time in the past.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "updatedSince", - "description": "Filter advisories to those updated since a time in the past.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "classifications", - "description": "A list of classifications to filter advisories by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "securityAdvisory","args": [ - { - "name": "ghsaId", - "description": "GitHub Security Advisory ID.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "SecurityAdvisory", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "securityVulnerabilities","args": [ - { - "name": "orderBy", - "description": "Ordering options for the returned topics.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SecurityVulnerabilityOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - }, - { - "name": "ecosystem", - "description": "An ecosystem to filter vulnerabilities by.", - "type": { - "kind": "ENUM", - "name": "SecurityAdvisoryEcosystem", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "package", - "description": "A package name to filter vulnerabilities by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "severities", - "description": "A list of severities to filter vulnerabilities by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisorySeverity", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "classifications", - "description": "A list of advisory classifications to filter vulnerabilities by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityVulnerabilityConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorables","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for users and organizations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorableOrder", - "ofType": None - }, - "defaultValue": "{field: LOGIN, direction: ASC}" - }, - { - "name": "onlyDependencies", - "description": "Whether only sponsorables who own the viewer's dependencies will be returned. Must be authenticated to use. Can check an organization instead for their dependencies owned by sponsorables by passing orgLoginForDependencies.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orgLoginForDependencies", - "description": "Optional organization username for whose dependencies should be checked. Used when onlyDependencies = true. Omit to check your own dependencies. If you are not an administrator of the organization, only dependencies from its public repositories will be considered.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "dependencyEcosystem", - "description": "Optional filter for which dependencies should be checked for sponsorable owners. Only sponsorable owners of dependencies in this ecosystem will be included. Used when onlyDependencies = true.\\n\\n**Upcoming Change on 2022-07-01 UTC**\\n**Description:** `dependencyEcosystem` will be removed. Use the ecosystem argument instead.\\n**Reason:** The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.\\n", - "type": { - "kind": "ENUM", - "name": "SecurityAdvisoryEcosystem", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ecosystem", - "description": "Optional filter for which dependencies should be checked for sponsorable owners. Only sponsorable owners of dependencies in this ecosystem will be included. Used when onlyDependencies = true.", - "type": { - "kind": "ENUM", - "name": "DependencyGraphEcosystem", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorableItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topic","args": [ - { - "name": "name", - "description": "The topic's name.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [ - { - "name": "login", - "description": "The user's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RateLimit", - "description": "Represents the client's rate limit.", - "fields": [ - { - "name": "cost","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "limit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodeCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "remaining","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resetAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "used","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "description": "Represents a subject that can be reacted on.", - "fields": [ - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Release", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ReactingUserConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactingUserEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReactingUserEdge", - "description": "Represents a user that's made a reaction.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Reaction", - "description": "An emoji reaction to a particular piece of content.", - "fields": [ - { - "name": "content","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReactionConnection", - "description": "A list of reactions that have been left on the subject.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Reaction", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasReacted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ReactionContent", - "description": "Emojis that can be attached to Issues, Pull Requests and Comments.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "THUMBS_UP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "THUMBS_DOWN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LAUGH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HOORAY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONFUSED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HEART","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ROCKET","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EYES","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReactionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Reaction", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReactionGroup", - "description": "A group of emoji reactions to a particular piece of content.", - "fields": [ - { - "name": "content","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactors","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "users","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactingUserConnection", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "Reactors can now be mannequins, bots, and organizations. Use the `reactors` field instead. Removal on 2021-10-01 UTC." - }, - { - "name": "viewerHasReacted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "description": "Ways in which lists of reactions can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ReactionOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ReactionOrderField", - "description": "A list of fields that reactions can be ordered by.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "Reactor", - "description": "Types that can be assigned to reactions.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Bot", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ReactorConnection", - "description": "The connection type for Reactor.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactorEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "Reactor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReactorEdge", - "description": "Represents an author of a reaction.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "Reactor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReadyForReviewEvent", - "description": "Represents a 'ready_for_review' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Ref", - "description": "Represents a Git reference.", - "fields": [ - { - "name": "associatedPullRequests","args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "branchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "compare","args": [ - { - "name": "headRef", - "description": "The head ref to compare against.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Comparison", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "prefix","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "refUpdateRule","args": [], - "type": { - "kind": "OBJECT", - "name": "RefUpdateRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rules","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repository rules.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "target","args": [], - "type": { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RefConnection", - "description": "The connection type for Ref.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RefEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RefEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RefNameConditionTarget", - "description": "Parameters to be used for the ref_name condition", - "fields": [ - { - "name": "exclude","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "include","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RefNameConditionTargetInput", - "description": "Parameters to be used for the ref_name condition", - "fields": None, - "inputFields": [ - { - "name": "exclude","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "include","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RefOrder", - "description": "Ways in which lists of git refs can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RefOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RefOrderField", - "description": "Properties by which ref connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TAG_COMMIT_DATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ALPHABETICAL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RefUpdate", - "description": "A ref update", - "fields": None, - "inputFields": [ - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitRefname", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "afterOid","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "beforeOid","type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "force","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RefUpdateRule", - "description": "Branch protection rules that are enforced on the viewer.", - "fields": [ - { - "name": "allowsDeletions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "allowsForcePushes","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blocksCreations","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pattern","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiredApprovingReviewCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiredStatusCheckContexts","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresCodeOwnerReviews","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresConversationResolution","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresLinearHistory","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requiresSignatures","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerAllowedToDismissReviews","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanPush","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReferencedEvent", - "description": "Represents a 'referenced' event on a given `ReferencedSubject`.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCrossRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDirectReference","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "ReferencedSubject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "ReferencedSubject", - "description": "Any referencable object", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesInput", - "description": "Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesPayload", - "description": "Autogenerated return type of RegenerateEnterpriseIdentityProviderRecoveryCodes", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "identityProvider","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseIdentityProvider", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RegenerateVerifiableDomainTokenInput", - "description": "Autogenerated input type of RegenerateVerifiableDomainToken", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RegenerateVerifiableDomainTokenPayload", - "description": "Autogenerated return type of RegenerateVerifiableDomainToken", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "verificationToken","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RejectDeploymentsInput", - "description": "Autogenerated input type of RejectDeployments", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "workflowRunId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "environmentIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "comment","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RejectDeploymentsPayload", - "description": "Autogenerated return type of RejectDeployments", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployments","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Release", - "description": "A release contains the content for a release.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "descriptionHTML","args": [], - "type": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDraft","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isLatest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPrerelease","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mentions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "releaseAssets","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "name", - "description": "A name to filter the assets by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReleaseAssetConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "shortDescriptionHTML","args": [ - { - "name": "limit", - "description": "How many characters to return.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "200" - } - ], - "type": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tag","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tagCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tagName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReleaseAsset", - "description": "A release asset contains the content for a release asset.", - "fields": [ - { - "name": "contentType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "downloadCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "downloadUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "release","args": [], - "type": { - "kind": "OBJECT", - "name": "Release", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "size","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "uploadedBy","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReleaseAssetConnection", - "description": "The connection type for ReleaseAsset.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReleaseAssetEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReleaseAsset", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReleaseAssetEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ReleaseAsset", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReleaseConnection", - "description": "The connection type for Release.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReleaseEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Release", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReleaseEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Release", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ReleaseOrder", - "description": "Ways in which lists of releases can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ReleaseOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ReleaseOrderField", - "description": "Properties by which release connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveAssigneesFromAssignableInput", - "description": "Autogenerated input type of RemoveAssigneesFromAssignable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "assignableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "assigneeIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveAssigneesFromAssignablePayload", - "description": "Autogenerated return type of RemoveAssigneesFromAssignable", - "fields": [ - { - "name": "assignable","args": [], - "type": { - "kind": "INTERFACE", - "name": "Assignable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseAdminInput", - "description": "Autogenerated input type of RemoveEnterpriseAdmin", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "login","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseAdminPayload", - "description": "Autogenerated return type of RemoveEnterpriseAdmin", - "fields": [ - { - "name": "admin","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseIdentityProviderInput", - "description": "Autogenerated input type of RemoveEnterpriseIdentityProvider", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseIdentityProviderPayload", - "description": "Autogenerated return type of RemoveEnterpriseIdentityProvider", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "identityProvider","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseIdentityProvider", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseMemberInput", - "description": "Autogenerated input type of RemoveEnterpriseMember", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "userId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseMemberPayload", - "description": "Autogenerated return type of RemoveEnterpriseMember", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseOrganizationInput", - "description": "Autogenerated input type of RemoveEnterpriseOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseOrganizationPayload", - "description": "Autogenerated return type of RemoveEnterpriseOrganization", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseSupportEntitlementInput", - "description": "Autogenerated input type of RemoveEnterpriseSupportEntitlement", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "login","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseSupportEntitlementPayload", - "description": "Autogenerated return type of RemoveEnterpriseSupportEntitlement", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveLabelsFromLabelableInput", - "description": "Autogenerated input type of RemoveLabelsFromLabelable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labelableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "labelIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveLabelsFromLabelablePayload", - "description": "Autogenerated return type of RemoveLabelsFromLabelable", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labelable","args": [], - "type": { - "kind": "INTERFACE", - "name": "Labelable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveOutsideCollaboratorInput", - "description": "Autogenerated input type of RemoveOutsideCollaborator", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveOutsideCollaboratorPayload", - "description": "Autogenerated return type of RemoveOutsideCollaborator", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "removedUser","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveReactionInput", - "description": "Autogenerated input type of RemoveReaction", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "subjectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "content","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveReactionPayload", - "description": "Autogenerated return type of RemoveReaction", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reaction","args": [], - "type": { - "kind": "OBJECT", - "name": "Reaction", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveStarInput", - "description": "Autogenerated input type of RemoveStar", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "starrableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveStarPayload", - "description": "Autogenerated return type of RemoveStar", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "starrable","args": [], - "type": { - "kind": "INTERFACE", - "name": "Starrable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveUpvoteInput", - "description": "Autogenerated input type of RemoveUpvote", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "subjectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemoveUpvotePayload", - "description": "Autogenerated return type of RemoveUpvote", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "INTERFACE", - "name": "Votable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemovedFromMergeQueueEvent", - "description": "Represents a 'removed_from_merge_queue' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "beforeCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enqueuer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeQueue","args": [], - "type": { - "kind": "OBJECT", - "name": "MergeQueue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RemovedFromProjectEvent", - "description": "Represents a 'removed_from_project' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectColumnName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RenamedTitleEvent", - "description": "Represents a 'renamed' event on a given issue or pull request", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "currentTitle","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "previousTitle","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "RenamedTitleSubject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "RenamedTitleSubject", - "description": "An object which has a renamable title", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "ReopenDiscussionInput", - "description": "Autogenerated input type of ReopenDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "discussionId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReopenDiscussionPayload", - "description": "Autogenerated return type of ReopenDiscussion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ReopenIssueInput", - "description": "Autogenerated input type of ReopenIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "issueId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReopenIssuePayload", - "description": "Autogenerated return type of ReopenIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ReopenPullRequestInput", - "description": "Autogenerated input type of ReopenPullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReopenPullRequestPayload", - "description": "Autogenerated return type of ReopenPullRequest", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReopenedEvent", - "description": "Represents a 'reopened' event on any `Closable`.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Closable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stateReason","args": [], - "type": { - "kind": "ENUM", - "name": "IssueStateReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoAccessAuditEntry", - "description": "Audit log entry for a repo.access event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "ENUM", - "name": "RepoAccessAuditEntryVisibility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepoAccessAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoAddMemberAuditEntry", - "description": "Audit log entry for a repo.add_member event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "ENUM", - "name": "RepoAddMemberAuditEntryVisibility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepoAddMemberAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoAddTopicAuditEntry", - "description": "Audit log entry for a repo.add_topic event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topic","args": [], - "type": { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topicName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "TopicAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoArchivedAuditEntry", - "description": "Audit log entry for a repo.archived event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "ENUM", - "name": "RepoArchivedAuditEntryVisibility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepoArchivedAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoChangeMergeSettingAuditEntry", - "description": "Audit log entry for a repo.change_merge_setting event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isEnabled","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeType","args": [], - "type": { - "kind": "ENUM", - "name": "RepoChangeMergeSettingAuditEntryMergeType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepoChangeMergeSettingAuditEntryMergeType", - "description": "The merge options available for pull requests to this repository.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MERGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REBASE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SQUASH","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", - "description": "Audit log entry for a repo.config.disable_anonymous_git_access event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", - "description": "Audit log entry for a repo.config.disable_collaborators_only event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableContributorsOnlyAuditEntry", - "description": "Audit log entry for a repo.config.disable_contributors_only event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", - "description": "Audit log entry for a repo.config.disable_sockpuppet_disallowed event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", - "description": "Audit log entry for a repo.config.enable_anonymous_git_access event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", - "description": "Audit log entry for a repo.config.enable_collaborators_only event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableContributorsOnlyAuditEntry", - "description": "Audit log entry for a repo.config.enable_contributors_only event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", - "description": "Audit log entry for a repo.config.enable_sockpuppet_disallowed event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigLockAnonymousGitAccessAuditEntry", - "description": "Audit log entry for a repo.config.lock_anonymous_git_access event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", - "description": "Audit log entry for a repo.config.unlock_anonymous_git_access event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoCreateAuditEntry", - "description": "Audit log entry for a repo.create event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "forkParentName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "forkSourceName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "ENUM", - "name": "RepoCreateAuditEntryVisibility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepoCreateAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoDestroyAuditEntry", - "description": "Audit log entry for a repo.destroy event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "ENUM", - "name": "RepoDestroyAuditEntryVisibility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepoDestroyAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveMemberAuditEntry", - "description": "Audit log entry for a repo.remove_member event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "ENUM", - "name": "RepoRemoveMemberAuditEntryVisibility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepoRemoveMemberAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveTopicAuditEntry", - "description": "Audit log entry for a repo.remove_topic event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topic","args": [], - "type": { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topicName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "TopicAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ReportedContentClassifiers", - "description": "The reasons a piece of content can be reported or minimized.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "SPAM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ABUSE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OFF_TOPIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OUTDATED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DUPLICATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RESOLVED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "description": "A repository contains the content for a project.", - "fields": [ - { - "name": "allowUpdateBranch","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "archivedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assignableUsers","args": [ - { - "name": "query", - "description": "Filters users with query on user name and login.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "autoMergeAllowed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "branchProtectionRules","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BranchProtectionRuleConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "codeOfConduct","args": [], - "type": { - "kind": "OBJECT", - "name": "CodeOfConduct", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "codeowners","args": [ - { - "name": "refName", - "description": "The ref name used to return the associated `CODEOWNERS` file.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryCodeowners", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "collaborators","args": [ - { - "name": "affiliation", - "description": "Collaborators affiliation level with a repository.", - "type": { - "kind": "ENUM", - "name": "CollaboratorAffiliation", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "login", - "description": "The login of one specific collaborator.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "Filters users with query on user name and login", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryCollaboratorConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitComments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contactLinks","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryContactLink", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contributingGuidelines","args": [], - "type": { - "kind": "OBJECT", - "name": "ContributingGuidelines", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "defaultBranchRef","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deleteBranchOnMerge","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dependencyGraphManifests","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "withDependencies", - "description": "Flag to scope to only manifests with dependencies", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "dependenciesFirst", - "description": "Number of dependencies to fetch", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "dependenciesAfter", - "description": "Cursor to paginate dependencies", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DependencyGraphManifestConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployKeys","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeployKeyConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deployments","args": [ - { - "name": "environments", - "description": "Environments to list deployments for", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for deployments returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DeploymentOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "descriptionHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [ - { - "name": "number", - "description": "The number for the discussion to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussionCategories","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "filterByAssignable", - "description": "Filter by categories that are assignable by the viewer.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCategoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussionCategory","args": [ - { - "name": "slug", - "description": "The slug of the discussion category to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscussionCategory", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "categoryId", - "description": "Only include discussions that belong to the category with this ID.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "states", - "description": "A list of states to filter the discussions by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DiscussionState", - "ofType": None - } - } - }, - "defaultValue": "[]" - }, - { - "name": "orderBy", - "description": "Ordering options for discussions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DiscussionOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - }, - { - "name": "answered", - "description": "Only show answered or unanswered discussions", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "diskUsage","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environment","args": [ - { - "name": "name", - "description": "The name of the environment to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the environments", - "type": { - "kind": "INPUT_OBJECT", - "name": "Environments", - "ofType": None - }, - "defaultValue": "{field: NAME, direction: ASC}" - }, - { - "name": "names", - "description": "The names of the environments to be returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": "[]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnvironmentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "forkCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "forkingAllowed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "forks","args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": "[OWNER, COLLABORATOR]" - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fundingLinks","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "FundingLink", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasDiscussionsEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasIssuesEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasProjectsEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasSponsorshipsEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasVulnerabilityAlertsEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasWikiEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "homepageUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "interactionAbility","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryInteractionAbility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isArchived","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isBlankIssuesEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDisabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isEmpty","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isFork","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isInOrganization","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isLocked","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMirror","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPrivate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSecurityPolicyEnabled","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isTemplate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isUserConfigurationRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [ - { - "name": "number", - "description": "The number for the issue to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issueOrPullRequest","args": [ - { - "name": "number", - "description": "The number for the issue to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "UNION", - "name": "IssueOrPullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issueTemplates","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueTemplate", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issues","args": [ - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the issues by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "filterBy", - "description": "Filtering options for issues returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueFilters", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "label","args": [ - { - "name": "name", - "description": "Label name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Label", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labels","args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "LabelOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "If provided, searches labels by name and description.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "languages","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "LanguageOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "LanguageConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "latestRelease","args": [], - "type": { - "kind": "OBJECT", - "name": "Release", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "licenseInfo","args": [], - "type": { - "kind": "OBJECT", - "name": "License", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockReason","args": [], - "type": { - "kind": "ENUM", - "name": "RepositoryLockReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mentionableUsers","args": [ - { - "name": "query", - "description": "Filters users with query on user name and login", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeCommitAllowed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeCommitMessage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MergeCommitMessage", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeCommitTitle","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MergeCommitTitle", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mergeQueue","args": [ - { - "name": "branch", - "description": "The name of the branch to get the merge queue for. Case sensitive.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MergeQueue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "milestone","args": [ - { - "name": "number", - "description": "The number for the milestone to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "milestones","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "states", - "description": "Filter by the state of the milestones.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MilestoneState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for milestones.", - "type": { - "kind": "INPUT_OBJECT", - "name": "MilestoneOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "Filters milestones with a query on the title", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "MilestoneConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mirrorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nameWithOwner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "object","args": [ - { - "name": "oid", - "description": "The Git object ID", - "type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "expression", - "description": "A Git revision expression suitable for rev-parse", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "openGraphImageUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "packages","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "names", - "description": "Find packages by their names.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "description": "Find packages in a repository by ID.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "packageType", - "description": "Filter registry package by type.", - "type": { - "kind": "ENUM", - "name": "PackageType", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PackageOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parent","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedDiscussions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnedDiscussionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedIssues","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PinnedIssueConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "planFeatures","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryPlanFeatures", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "primaryLanguage","args": [], - "type": { - "kind": "OBJECT", - "name": "Language", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [ - { - "name": "number", - "description": "The project number to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [ - { - "name": "number", - "description": "The Project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projects","args": [ - { - "name": "orderBy", - "description": "Ordering options for projects returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "search", - "description": "Query to search projects by, currently only searching by name.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the projects by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsV2","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "A project to search for linked to the repo.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "ofType": None - }, - "defaultValue": "{field: NUMBER, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [ - { - "name": "number", - "description": "The number for the pull request to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestTemplates","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestTemplate", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequests","args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pushedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rebaseMergeAllowed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "recentProjects","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [ - { - "name": "qualifiedName", - "description": "The ref to retrieve. Fully qualified matches are checked in order (`refs/heads/master`) before falling back onto checks for short name matches (`master`).", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "refs","args": [ - { - "name": "query", - "description": "Filters refs with query on name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "refPrefix", - "description": "A ref name prefix like `refs/heads/`, `refs/tags/`, etc.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction", - "description": "DEPRECATED: use orderBy. The ordering direction.", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for refs returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RefOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RefConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "release","args": [ - { - "name": "tagName", - "description": "The name of the Tag the Release was created from", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Release", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "releases","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReleaseOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReleaseConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryTopics","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryTopicConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ruleset","args": [ - { - "name": "includeParents", - "description": "Include rulesets configured at higher levels that apply to this repository", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "databaseId", - "description": "The ID of the ruleset to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rulesets","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "includeParents", - "description": "Return rulesets configured at higher levels that apply to this repository", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryRulesetConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "securityPolicyUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "shortDescriptionHTML","args": [ - { - "name": "limit", - "description": "How many characters to return.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "200" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "squashMergeAllowed","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "squashMergeCommitMessage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SquashMergeCommitMessage", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "squashMergeCommitTitle","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SquashMergeCommitTitle", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "squashPrTitleUsedAsDefault","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "`squashPrTitleUsedAsDefault` will be removed. Use `Repository.squashMergeCommitTitle` instead. Removal on 2023-04-01 UTC." - }, - { - "name": "sshUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitSSHRemote", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stargazerCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stargazers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "StarOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StargazerConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "submodules","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SubmoduleConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tempCloneToken","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "templateRepository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "usesCustomOpenGraphImage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanAdminister","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanCreateProjects","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSubscribe","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdateTopics","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDefaultCommitEmail","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDefaultMergeMethod","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasStarred","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerPermission","args": [], - "type": { - "kind": "ENUM", - "name": "RepositoryPermission", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerPossibleCommitEmails","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerSubscription","args": [], - "type": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "vulnerabilityAlert","args": [ - { - "name": "number", - "description": "The number for the vulnerability alert to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlert", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "vulnerabilityAlerts","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "states", - "description": "Filter by the state of the alert", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "dependencyScopes", - "description": "Filter by the scope of the alert's dependency", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertDependencyScope", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlertConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "watchers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "webCommitSignoffRequired","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "PackageOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Recent", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryInfo", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Starrable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "description": "The affiliation of a user to a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OWNER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COLLABORATOR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ORGANIZATION_MEMBER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "description": "Metadata for an audit entry with action repo.*", - "fields": [ - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingDisableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingEnableAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoAddTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoArchivedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoChangeMergeSettingAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableContributorsOnlyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigLockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoCreateAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoDestroyAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddRepositoryAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveRepositoryAuditEntry", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "RepositoryCodeowners", - "description": "Information extracted from a repository's `CODEOWNERS` file.", - "fields": [ - { - "name": "errors","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryCodeownersError", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryCodeownersError", - "description": "An error in a `CODEOWNERS` file.", - "fields": [ - { - "name": "column","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "kind","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "line","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "source","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "suggestion","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryCollaboratorConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryCollaboratorEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryCollaboratorEdge", - "description": "Represents a user who is a collaborator of a repository.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permission","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryPermission", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permissionSources","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PermissionSource", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryConnection", - "description": "A list of repositories owned by the subject.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalDiskUsage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryContactLink", - "description": "A repository contact link.", - "fields": [ - { - "name": "about","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryContributionType", - "description": "The reason a repository is listed as 'contributed'.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "COMMIT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ISSUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REPOSITORY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST_REVIEW","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryDiscussionAuthor", - "description": "Represents an author of discussions in repositories.", - "fields": [ - { - "name": "repositoryDiscussions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for discussions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DiscussionOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - }, - { - "name": "repositoryId", - "description": "Filter discussions to only those in a specific repository.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "answered", - "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "states", - "description": "A list of states to filter the discussions by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DiscussionState", - "ofType": None - } - } - }, - "defaultValue": "[]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "INTERFACE", - "name": "RepositoryDiscussionCommentAuthor", - "description": "Represents an author of discussion comments in repositories.", - "fields": [ - { - "name": "repositoryDiscussionComments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "description": "Filter discussion comments to only those in a specific repository.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "onlyAnswers", - "description": "Filter discussion comments to only those that were marked as the answer", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "RepositoryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryIdConditionTarget", - "description": "Parameters to be used for the repository_id condition", - "fields": [ - { - "name": "repositoryIds","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryIdConditionTargetInput", - "description": "Parameters to be used for the repository_id condition", - "fields": None, - "inputFields": [ - { - "name": "repositoryIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryInfo", - "description": "A subset of repository info.", - "fields": [ - { - "name": "archivedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "descriptionHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "forkCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasDiscussionsEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasIssuesEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasProjectsEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasSponsorshipsEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasWikiEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "homepageUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isArchived","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isFork","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isInOrganization","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isLocked","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isMirror","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPrivate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isTemplate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "licenseInfo","args": [], - "type": { - "kind": "OBJECT", - "name": "License", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockReason","args": [], - "type": { - "kind": "ENUM", - "name": "RepositoryLockReason", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mirrorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nameWithOwner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "openGraphImageUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pushedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "shortDescriptionHTML","args": [ - { - "name": "limit", - "description": "How many characters to return.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "200" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "usesCustomOpenGraphImage","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "visibility","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "RepositoryInteractionAbility", - "description": "Repository interaction limit that applies to this object.", - "fields": [ - { - "name": "expiresAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "limit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryInteractionLimit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "origin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryInteractionLimitOrigin", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryInteractionLimit", - "description": "A repository interaction limit.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "EXISTING_USERS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CONTRIBUTORS_ONLY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COLLABORATORS_ONLY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NO_LIMIT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryInteractionLimitExpiry", - "description": "The length for a repository interaction limit to be enabled for.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ONE_DAY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "THREE_DAYS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ONE_WEEK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ONE_MONTH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SIX_MONTHS","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryInteractionLimitOrigin", - "description": "Indicates where an interaction limit is configured.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "REPOSITORY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ORGANIZATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "USER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryInvitation", - "description": "An invitation for a user to be added to a repository.", - "fields": [ - { - "name": "email","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitee","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "inviter","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permalink","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permission","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryPermission", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "INTERFACE", - "name": "RepositoryInfo", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryInvitationConnection", - "description": "A list of repository invitations.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryInvitationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryInvitation", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryInvitationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryInvitation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryInvitationOrder", - "description": "Ordering options for repository invitation connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryInvitationOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryInvitationOrderField", - "description": "Properties by which repository invitation connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryLockReason", - "description": "The possible reasons a given repository could be in a locked state.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MOVING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BILLING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RENAME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MIGRATING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TRADE_RESTRICTION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TRANSFERRING_OWNERSHIP","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryMigration", - "description": "A GitHub Enterprise Importer (GEI) repository migration.", - "fields": [ - { - "name": "continueOnError","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "failureReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "migrationLogUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "migrationSource","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "MigrationSource", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sourceUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "MigrationState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "warningsCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Migration", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryMigrationConnection", - "description": "A list of migrations.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryMigrationEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryMigration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryMigrationEdge", - "description": "Represents a repository migration.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryMigration", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryMigrationOrder", - "description": "Ordering options for repository migrations.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryMigrationOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryMigrationOrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryMigrationOrderDirection", - "description": "Possible directions in which to order a list of repository migrations when provided an `orderBy` argument.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ASC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DESC","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryMigrationOrderField", - "description": "Properties by which repository migrations can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryNameConditionTarget", - "description": "Parameters to be used for the repository_name condition", - "fields": [ - { - "name": "exclude","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "include","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "protected","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryNameConditionTargetInput", - "description": "Parameters to be used for the repository_name condition", - "fields": None, - "inputFields": [ - { - "name": "exclude","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "include","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "protected","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "description": "Represents a object that belongs to a repository.", - "fields": [ - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommitCommentThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DependabotUpdate", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionCategory", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PinnedDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitCommentThread", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlert", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "description": "Ordering options for repository connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryOrderField", - "description": "Properties by which repository connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUSHED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "STARGAZERS","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "description": "Represents an owner of a Repository.", - "fields": [ - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositories","args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": "[OWNER, COLLABORATOR]" - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isArchived", - "description": "If non-null, filters repositories according to whether they are archived and not maintained", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isFork", - "description": "If non-null, filters repositories according to whether they are forks of another repository", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [ - { - "name": "name", - "description": "Name of Repository to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "followRenames", - "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "ENUM", - "name": "RepositoryPermission", - "description": "The access level to a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MAINTAIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WRITE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TRIAGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "READ","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryPlanFeatures", - "description": "Information about the availability of features and limits for a repository based on its billing plan.", - "fields": [ - { - "name": "codeowners","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "draftPullRequests","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "maximumAssignees","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "maximumManualReviewRequests","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamReviewRequests","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryPropertyConditionTarget", - "description": "Parameters to be used for the repository_property condition", - "fields": [ - { - "name": "exclude","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PropertyTargetDefinition", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "include","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PropertyTargetDefinition", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryPropertyConditionTargetInput", - "description": "Parameters to be used for the repository_property condition", - "fields": None, - "inputFields": [ - { - "name": "exclude","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PropertyTargetDefinitionInput", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "include","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PropertyTargetDefinitionInput", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRule", - "description": "A repository rule.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parameters","args": [], - "type": { - "kind": "UNION", - "name": "RuleParameters", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryRuleset","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "type","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryRuleType", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleConditions", - "description": "Set of conditions that determine if a ruleset will evaluate", - "fields": [ - { - "name": "refName","args": [], - "type": { - "kind": "OBJECT", - "name": "RefNameConditionTarget", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryId","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryIdConditionTarget", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryNameConditionTarget", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryProperty","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryPropertyConditionTarget", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleConditionsInput", - "description": "Specifies the conditions required for a ruleset to evaluate", - "fields": None, - "inputFields": [ - { - "name": "refName","type": { - "kind": "INPUT_OBJECT", - "name": "RefNameConditionTargetInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryName","type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryNameConditionTargetInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryIdConditionTargetInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryProperty","type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryPropertyConditionTargetInput", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleConnection", - "description": "The connection type for RepositoryRule.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryRuleEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryRule", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleInput", - "description": "Specifies the attributes for a new or updated rule.", - "fields": None, - "inputFields": [ - { - "name": "id","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "type","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryRuleType", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "parameters","type": { - "kind": "INPUT_OBJECT", - "name": "RuleParametersInput", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleOrder", - "description": "Ordering options for repository rules.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryRuleOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryRuleOrderField", - "description": "Properties by which repository rule connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TYPE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryRuleType", - "description": "The rule types supported in rulesets", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DELETION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REQUIRED_LINEAR_HISTORY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MERGE_QUEUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REQUIRED_REVIEW_THREAD_RESOLUTION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REQUIRED_DEPLOYMENTS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REQUIRED_SIGNATURES","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REQUIRED_STATUS_CHECKS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REQUIRED_WORKFLOW_STATUS_CHECKS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NON_FAST_FORWARD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTHORIZATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TAG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MERGE_QUEUE_LOCKED_REF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LOCK_BRANCH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MAX_REF_UPDATES","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMIT_MESSAGE_PATTERN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMIT_AUTHOR_EMAIL_PATTERN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMITTER_EMAIL_PATTERN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BRANCH_NAME_PATTERN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TAG_NAME_PATTERN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WORKFLOWS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SECRET_SCANNING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WORKFLOW_UPDATES","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "description": "A repository ruleset.", - "fields": [ - { - "name": "bypassActors","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActorConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "conditions","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryRuleConditions", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enforcement","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RuleEnforcement", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "rules","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "type", - "description": "The type of rule.", - "type": { - "kind": "ENUM", - "name": "RepositoryRuleType", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "source","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "RuleSource", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "target","args": [], - "type": { - "kind": "ENUM", - "name": "RepositoryRulesetTarget", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActor", - "description": "A team or app that has the ability to bypass a rules defined on a ruleset", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "BypassActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bypassMode","args": [], - "type": { - "kind": "ENUM", - "name": "RepositoryRulesetBypassActorBypassMode", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationAdmin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryRoleDatabaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryRoleName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryRuleset","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryRulesetBypassActorBypassMode", - "description": "The bypass mode for a specific actor on a ruleset.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ALWAYS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PULL_REQUEST","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActorConnection", - "description": "The connection type for RepositoryRulesetBypassActor.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActorEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActorEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryRulesetBypassActorInput", - "description": "Specifies the attributes for a new or updated ruleset bypass actor. Only one of `actor_id`, `repository_role_database_id`, or `organization_admin` should be specified.", - "fields": None, - "inputFields": [ - { - "name": "actorId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryRoleDatabaseId","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationAdmin","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "bypassMode","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryRulesetBypassActorBypassMode", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetConnection", - "description": "The connection type for RepositoryRuleset.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryRulesetEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryRulesetTarget", - "description": "The targets supported for rulesets", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "BRANCH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TAG","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryTopic", - "description": "A repository-topic connects a repository to a topic.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topic","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryTopicConnection", - "description": "The connection type for RepositoryTopic.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryTopicEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryTopic", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryTopicEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryTopic", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryVisibility", - "description": "The repository's visibility level.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INTERNAL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeDisableAuditEntry", - "description": "Audit log entry for a repository_visibility_change.disable event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeEnableAuditEntry", - "description": "Audit log entry for a repository_visibility_change.enable event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseSlug","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterpriseUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlert", - "description": "A Dependabot alert for a repository with a dependency affected by a security vulnerability.", - "fields": [ - { - "name": "autoDismissedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dependabotUpdate","args": [], - "type": { - "kind": "OBJECT", - "name": "DependabotUpdate", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dependencyScope","args": [], - "type": { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertDependencyScope", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismissComment","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismissReason","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismissedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismisser","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fixedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "securityAdvisory","args": [], - "type": { - "kind": "OBJECT", - "name": "SecurityAdvisory", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "securityVulnerability","args": [], - "type": { - "kind": "OBJECT", - "name": "SecurityVulnerability", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "vulnerableManifestFilename","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "vulnerableManifestPath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "vulnerableRequirements","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlertConnection", - "description": "The connection type for RepositoryVulnerabilityAlert.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlertEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlert", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertDependencyScope", - "description": "The possible scopes of an alert's dependency.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "RUNTIME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DEVELOPMENT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlertEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlert", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertState", - "description": "The possible states of an alert", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FIXED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISMISSED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AUTO_DISMISSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestReviewsInput", - "description": "Autogenerated input type of RequestReviews", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "userIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "teamIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "union","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RequestReviewsPayload", - "description": "Autogenerated return type of RequestReviews", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requestedReviewersEdge","args": [], - "type": { - "kind": "OBJECT", - "name": "UserEdge", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RequestableCheckStatusState", - "description": "The possible states that can be requested when creating a check run.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "QUEUED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN_PROGRESS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMPLETED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WAITING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "RequestedReviewer", - "description": "Types that can be requested reviewers.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Bot", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "RequestedReviewerConnection", - "description": "The connection type for RequestedReviewer.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RequestedReviewerEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "RequestedReviewer", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RequestedReviewerEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "RequestedReviewer", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "RequirableByPullRequest", - "description": "Represents a type that can be required by a pull request for merging.", - "fields": [ - { - "name": "isRequired","args": [ - { - "name": "pullRequestId", - "description": "The id of the pull request this is required for", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestNumber", - "description": "The number of the pull request this is required for", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CheckRun", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "StatusContext", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "RequiredDeploymentsParameters", - "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", - "fields": [ - { - "name": "requiredDeploymentEnvironments","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RequiredDeploymentsParametersInput", - "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", - "fields": None, - "inputFields": [ - { - "name": "requiredDeploymentEnvironments","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RequiredStatusCheckDescription", - "description": "Represents a required status check for a protected branch, but not any specific run of that check.", - "fields": [ - { - "name": "app","args": [], - "type": { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "context","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusCheckInput", - "description": "Specifies the attributes for a new or updated required status check.", - "fields": None, - "inputFields": [ - { - "name": "context","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "appId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RequiredStatusChecksParameters", - "description": "Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.", - "fields": [ - { - "name": "requiredStatusChecks","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusCheckConfiguration", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "strictRequiredStatusChecksPolicy","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusChecksParametersInput", - "description": "Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.", - "fields": None, - "inputFields": [ - { - "name": "requiredStatusChecks","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusCheckConfigurationInput", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "strictRequiredStatusChecksPolicy","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RerequestCheckSuiteInput", - "description": "Autogenerated input type of RerequestCheckSuite", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "checkSuiteId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RerequestCheckSuitePayload", - "description": "Autogenerated return type of RerequestCheckSuite", - "fields": [ - { - "name": "checkSuite","args": [], - "type": { - "kind": "OBJECT", - "name": "CheckSuite", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "ResolveReviewThreadInput", - "description": "Autogenerated input type of ResolveReviewThread", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "threadId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ResolveReviewThreadPayload", - "description": "Autogenerated return type of ResolveReviewThread", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "thread","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RestrictedContribution", - "description": "Represents a private contribution a user made on GitHub.", - "fields": [ - { - "name": "isRestricted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "occurredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Contribution", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RetireSponsorsTierInput", - "description": "Autogenerated input type of RetireSponsorsTier", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "tierId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RetireSponsorsTierPayload", - "description": "Autogenerated return type of RetireSponsorsTier", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsTier","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RevertPullRequestInput", - "description": "Autogenerated input type of RevertPullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "draft","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RevertPullRequestPayload", - "description": "Autogenerated return type of RevertPullRequest", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "revertPullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewDismissalAllowance", - "description": "A user, team, or app who has the ability to dismiss a review on a protected branch.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "ReviewDismissalAllowanceActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "branchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "ReviewDismissalAllowanceActor", - "description": "Types that can be an actor.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "ReviewDismissalAllowanceConnection", - "description": "The connection type for ReviewDismissalAllowance.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReviewDismissalAllowanceEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReviewDismissalAllowance", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewDismissalAllowanceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ReviewDismissalAllowance", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewDismissedEvent", - "description": "Represents a 'review_dismissed' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismissalMessage","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dismissalMessageHTML","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "previousReviewState","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestCommit","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestCommit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "review","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequest", - "description": "A request for a user to review a pull request.", - "fields": [ - { - "name": "asCodeOwner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requestedReviewer","args": [], - "type": { - "kind": "UNION", - "name": "RequestedReviewer", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestConnection", - "description": "The connection type for ReviewRequest.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReviewRequestEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReviewRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "ReviewRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestRemovedEvent", - "description": "Represents an 'review_request_removed' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requestedReviewer","args": [], - "type": { - "kind": "UNION", - "name": "RequestedReviewer", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewRequestedEvent", - "description": "Represents an 'review_requested' event on a given pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "requestedReviewer","args": [], - "type": { - "kind": "UNION", - "name": "RequestedReviewer", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ReviewStatusHovercardContext", - "description": "A hovercard context with a message describing the current code review state of the pull\\nrequest.\\n", - "fields": [ - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "octicon","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewDecision","args": [], - "type": { - "kind": "ENUM", - "name": "PullRequestReviewDecision", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "HovercardContext", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RevokeEnterpriseOrganizationsMigratorRoleInput", - "description": "Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "login","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RevokeEnterpriseOrganizationsMigratorRolePayload", - "description": "Autogenerated return type of RevokeEnterpriseOrganizationsMigratorRole", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "RevokeMigratorRoleInput", - "description": "Autogenerated input type of RevokeMigratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "actor","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "actorType","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ActorType", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "RevokeMigratorRolePayload", - "description": "Autogenerated return type of RevokeMigratorRole", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "success","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RoleInOrganization", - "description": "Possible roles a user may have in relation to an organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OWNER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DIRECT_MEMBER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNAFFILIATED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "RuleEnforcement", - "description": "The level of enforcement for a rule or ruleset.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ACTIVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EVALUATE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "RuleParameters", - "description": "Types which can be parameters for `RepositoryRule` objects.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "BranchNamePatternParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommitAuthorEmailPatternParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommitMessagePatternParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CommitterEmailPatternParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RequiredDeploymentsParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RequiredStatusChecksParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TagNamePatternParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "UpdateParameters", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "WorkflowsParameters", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "RuleParametersInput", - "description": "Specifies the parameters for a `RepositoryRule` object. Only one of the fields should be specified.", - "fields": None, - "inputFields": [ - { - "name": "update","type": { - "kind": "INPUT_OBJECT", - "name": "UpdateParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiredDeployments","type": { - "kind": "INPUT_OBJECT", - "name": "RequiredDeploymentsParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequest","type": { - "kind": "INPUT_OBJECT", - "name": "PullRequestParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiredStatusChecks","type": { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusChecksParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "commitMessagePattern","type": { - "kind": "INPUT_OBJECT", - "name": "CommitMessagePatternParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "commitAuthorEmailPattern","type": { - "kind": "INPUT_OBJECT", - "name": "CommitAuthorEmailPatternParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "committerEmailPattern","type": { - "kind": "INPUT_OBJECT", - "name": "CommitterEmailPatternParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "branchNamePattern","type": { - "kind": "INPUT_OBJECT", - "name": "BranchNamePatternParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "tagNamePattern","type": { - "kind": "INPUT_OBJECT", - "name": "TagNamePatternParametersInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "workflows","type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowsParametersInput", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "RuleSource", - "description": "Types which can have `RepositoryRule` objects.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - ] - }, - { - "kind": "ENUM", - "name": "SamlDigestAlgorithm", - "description": "The possible digest algorithms used to sign SAML requests for an identity provider.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "SHA1","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SHA256","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SHA384","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SHA512","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SamlSignatureAlgorithm", - "description": "The possible signature algorithms used to sign SAML requests for a Identity Provider.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "RSA_SHA1","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RSA_SHA256","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RSA_SHA384","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RSA_SHA512","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SavedReply", - "description": "A Saved Reply is text a user can use to reply quickly.", - "fields": [ - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SavedReplyConnection", - "description": "The connection type for SavedReply.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SavedReplyEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SavedReply", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SavedReplyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "SavedReply", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SavedReplyOrder", - "description": "Ordering options for saved reply connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SavedReplyOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SavedReplyOrderField", - "description": "Properties by which saved reply connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "SearchResultItem", - "description": "The results of a search.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "App", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MarketplaceListing", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "SearchResultItemConnection", - "description": "A list of results that matched against a search query. Regardless of the number of matches, a maximum of 1,000 results will be available across all types, potentially split across many pages.", - "fields": [ - { - "name": "codeCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussionCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SearchResultItemEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issueCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "SearchResultItem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "wikiCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SearchResultItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "SearchResultItem", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "textMatches","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TextMatch", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SearchType", - "description": "Represents the individual results of a search.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ISSUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REPOSITORY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "USER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISCUSSION","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisory", - "description": "A GitHub Security Advisory", - "fields": [ - { - "name": "classification","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "cvss","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CVSS", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "cwes","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CWEConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ghsaId","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "identifiers","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisoryIdentifier", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "notificationsPermalink","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "origin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permalink","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "references","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisoryReference", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "severity","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisorySeverity", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "summary","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "vulnerabilities","args": [ - { - "name": "orderBy", - "description": "Ordering options for the returned topics.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SecurityVulnerabilityOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - }, - { - "name": "ecosystem", - "description": "An ecosystem to filter vulnerabilities by.", - "type": { - "kind": "ENUM", - "name": "SecurityAdvisoryEcosystem", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "package", - "description": "A package name to filter vulnerabilities by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "severities", - "description": "A list of severities to filter vulnerabilities by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisorySeverity", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "classifications", - "description": "A list of advisory classifications to filter vulnerabilities by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityVulnerabilityConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "withdrawnAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "description": "Classification of the advisory.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "GENERAL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MALWARE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryConnection", - "description": "The connection type for SecurityAdvisory.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisoryEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisory", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SecurityAdvisoryEcosystem", - "description": "The possible ecosystems of a security vulnerability's package.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "COMPOSER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ERLANG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ACTIONS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MAVEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NPM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NUGET","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PIP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUB","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RUBYGEMS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RUST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SWIFT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "SecurityAdvisory", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryIdentifier", - "description": "A GitHub Security Advisory Identifier", - "fields": [ - { - "name": "type","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "value","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SecurityAdvisoryIdentifierFilter", - "description": "An advisory identifier to filter results on.", - "fields": None, - "inputFields": [ - { - "name": "type","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryIdentifierType", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "value","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SecurityAdvisoryIdentifierType", - "description": "Identifier formats available for advisories.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GHSA","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SecurityAdvisoryOrder", - "description": "Ordering options for security advisory connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SecurityAdvisoryOrderField", - "description": "Properties by which security advisory connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PUBLISHED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryPackage", - "description": "An individual package", - "fields": [ - { - "name": "ecosystem","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryEcosystem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryPackageVersion", - "description": "An individual package version", - "fields": [ - { - "name": "identifier","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryReference", - "description": "A GitHub Security Advisory Reference", - "fields": [ - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SecurityAdvisorySeverity", - "description": "Severity of the vulnerability.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LOW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MODERATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HIGH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CRITICAL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityVulnerability", - "description": "An individual vulnerability within an Advisory", - "fields": [ - { - "name": "advisory","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisory", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "firstPatchedVersion","args": [], - "type": { - "kind": "OBJECT", - "name": "SecurityAdvisoryPackageVersion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "package","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisoryPackage", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "severity","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisorySeverity", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "vulnerableVersionRange","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityVulnerabilityConnection", - "description": "The connection type for SecurityVulnerability.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityVulnerabilityEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityVulnerability", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SecurityVulnerabilityEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "SecurityVulnerability", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SecurityVulnerabilityOrder", - "description": "Ordering options for security vulnerability connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityVulnerabilityOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SecurityVulnerabilityOrderField", - "description": "Properties by which security vulnerability connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SetEnterpriseIdentityProviderInput", - "description": "Autogenerated input type of SetEnterpriseIdentityProvider", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ssoUrl","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "issuer","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "idpCertificate","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "signatureMethod","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SamlSignatureAlgorithm", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "digestMethod","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SamlDigestAlgorithm", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SetEnterpriseIdentityProviderPayload", - "description": "Autogenerated return type of SetEnterpriseIdentityProvider", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "identityProvider","args": [], - "type": { - "kind": "OBJECT", - "name": "EnterpriseIdentityProvider", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrganizationInteractionLimitInput", - "description": "Autogenerated input type of SetOrganizationInteractionLimit", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "limit","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryInteractionLimit", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "expiry","type": { - "kind": "ENUM", - "name": "RepositoryInteractionLimitExpiry", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SetOrganizationInteractionLimitPayload", - "description": "Autogenerated return type of SetOrganizationInteractionLimit", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SetRepositoryInteractionLimitInput", - "description": "Autogenerated input type of SetRepositoryInteractionLimit", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "limit","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryInteractionLimit", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "expiry","type": { - "kind": "ENUM", - "name": "RepositoryInteractionLimitExpiry", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SetRepositoryInteractionLimitPayload", - "description": "Autogenerated return type of SetRepositoryInteractionLimit", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SetUserInteractionLimitInput", - "description": "Autogenerated input type of SetUserInteractionLimit", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "limit","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryInteractionLimit", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "expiry","type": { - "kind": "ENUM", - "name": "RepositoryInteractionLimitExpiry", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SetUserInteractionLimitPayload", - "description": "Autogenerated return type of SetUserInteractionLimit", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SmimeSignature", - "description": "Represents an S/MIME signature on a Commit or Tag.", - "fields": [ - { - "name": "email","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isValid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "payload","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signature","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "GitSignatureState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "wasSignedByGitHub","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "GitSignature", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SocialAccount", - "description": "Social media profile associated with a user.", - "fields": [ - { - "name": "displayName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "provider","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SocialAccountProvider", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SocialAccountConnection", - "description": "The connection type for SocialAccount.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SocialAccountEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SocialAccount", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SocialAccountEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "SocialAccount", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SocialAccountProvider", - "description": "Software or company that hosts social media accounts.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "GENERIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FACEBOOK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HOMETOWN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INSTAGRAM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LINKEDIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MASTODON","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REDDIT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TWITCH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TWITTER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "YOUTUBE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NPM","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "Sponsor", - "description": "Entities that can sponsor others via GitHub Sponsors", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValue", - "description": "A GitHub account and the total amount in USD they've paid for sponsorships to a particular maintainer. Does not include payments made via Patreon.", - "fields": [ - { - "name": "amountInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "formattedAmount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueConnection", - "description": "The connection type for SponsorAndLifetimeValue.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorAndLifetimeValueOrder", - "description": "Ordering options for connections to get sponsor entities and associated USD amounts for GitHub Sponsors.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorAndLifetimeValueOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorAndLifetimeValueOrderField", - "description": "Properties by which sponsor and lifetime value connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "SPONSOR_LOGIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SPONSOR_RELEVANCE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LIFETIME_VALUE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorConnection", - "description": "A list of users and organizations sponsoring someone via GitHub Sponsors.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "Sponsor", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorEdge", - "description": "Represents a user or organization who is sponsoring someone in GitHub Sponsors.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "Sponsor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorOrder", - "description": "Ordering options for connections to get sponsor entities for GitHub Sponsors.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorOrderField", - "description": "Properties by which sponsor connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LOGIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RELEVANCE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Sponsorable", - "description": "Entities that can sponsor or be sponsored through GitHub Sponsors.", - "fields": [ - { - "name": "estimatedNextSponsorsPayoutInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasSponsorsListing","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSponsoredBy","args": [ - { - "name": "accountLogin", - "description": "The target account's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSponsoringViewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lifetimeReceivedSponsorshipValues","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for results returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorAndLifetimeValueOrder", - "ofType": None - }, - "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "monthlyEstimatedSponsorsIncomeInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsoring","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the users and organizations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorOrder", - "ofType": None - }, - "defaultValue": "{field: RELEVANCE, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsors","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "tierId", - "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsors returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorOrder", - "ofType": None - }, - "defaultValue": "{field: RELEVANCE, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsActivities","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "period", - "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", - "type": { - "kind": "ENUM", - "name": "SponsorsActivityPeriod", - "ofType": None - }, - "defaultValue": "MONTH" - }, - { - "name": "since", - "description": "Filter activities to those that occurred on or after this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "until", - "description": "Filter activities to those that occurred before this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for activity returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorsActivityOrder", - "ofType": None - }, - "defaultValue": "{field: TIMESTAMP, direction: DESC}" - }, - { - "name": "actions", - "description": "Filter activities to only the specified actions.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "ofType": None - } - } - }, - "defaultValue": "[]" - }, - { - "name": "includeAsSponsor", - "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "includePrivate", - "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsActivityConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsListing","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipForViewerAsSponsor","args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipForViewerAsSponsorable","args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipNewsletters","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorship updates returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipNewsletterOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipNewsletterConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipsAsMaintainer","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "includePrivate", - "description": "Whether or not to include private sponsorships in the result set", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipsAsSponsor","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "maintainerLogins", - "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalSponsorshipAmountAsSponsorInCents","args": [ - { - "name": "since", - "description": "Filter payments to those that occurred on or after this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "until", - "description": "Filter payments to those that occurred before this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogins", - "description": "Filter payments to those made to the users or organizations with the specified usernames.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": "[]" - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSponsor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerIsSponsoring","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "UNION", - "name": "SponsorableItem", - "description": "Entities that can be sponsored via GitHub Sponsors", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "SponsorableItemConnection", - "description": "The connection type for SponsorableItem.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorableItemEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "SponsorableItem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorableItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "SponsorableItem", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorableOrder", - "description": "Ordering options for connections to get sponsorable entities for GitHub Sponsors.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorableOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorableOrderField", - "description": "Properties by which sponsorable connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LOGIN","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsActivity", - "description": "An event related to sponsorship activity.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "currentPrivacyLevel","args": [], - "type": { - "kind": "ENUM", - "name": "SponsorshipPrivacy", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "paymentSource","args": [], - "type": { - "kind": "ENUM", - "name": "SponsorshipPaymentSource", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "previousSponsorsTier","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsor","args": [], - "type": { - "kind": "UNION", - "name": "Sponsor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsTier","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "timestamp","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viaBulkSponsorship","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "description": "The possible actions that GitHub Sponsors activities can represent.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NEW_SPONSORSHIP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CANCELLED_SPONSORSHIP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TIER_CHANGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "REFUND","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING_CHANGE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SPONSOR_MATCH_DISABLED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsActivityConnection", - "description": "The connection type for SponsorsActivity.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsActivityEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsActivity", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsActivityEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsActivity", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorsActivityOrder", - "description": "Ordering options for GitHub Sponsors activity connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsActivityOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorsActivityOrderField", - "description": "Properties by which GitHub Sponsors activity connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TIMESTAMP","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorsActivityPeriod", - "description": "The possible time periods for which Sponsors activities can be requested.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DAY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WEEK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MONTH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorsCountryOrRegionCode", - "description": "Represents countries or regions for billing and residence for a GitHub Sponsors profile.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "AF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AX", - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AQ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AU","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BB","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BJ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BQ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BV","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CV","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CX","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CI", - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CW", - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DJ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SV","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GQ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ET","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FJ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GU","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "HU","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ID","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IQ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "JM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "JP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "JE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "JO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LV","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LB","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LU","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MV","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ML","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MQ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MU","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "YT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MX","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NU","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MP","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "QA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RU","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BL", - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "KN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "RS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SX","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SB","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ZA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ES","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SJ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TW","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TJ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TL","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TO","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TR", - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "TV","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "AE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "GB","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "US","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UZ","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VU","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VG","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VI","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "WF","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "EH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "YE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ZM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ZW","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsGoal", - "description": "A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.", - "fields": [ - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "kind","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsGoalKind", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "percentComplete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "targetValue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorsGoalKind", - "description": "The different kinds of goals a GitHub Sponsors member can have.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TOTAL_SPONSORS_COUNT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MONTHLY_SPONSORSHIP_AMOUNT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsListing", - "description": "A GitHub Sponsors listing.", - "fields": [ - { - "name": "activeGoal","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsGoal", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "activeStripeConnectAccount","args": [], - "type": { - "kind": "OBJECT", - "name": "StripeConnectAccount", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "billingCountryOrRegion","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contactEmailAddress","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dashboardResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dashboardUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "featuredItems","args": [ - { - "name": "featureableTypes", - "description": "The types of featured items to return.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsListingFeaturedItemFeatureableType", - "ofType": None - } - } - }, - "defaultValue": "[REPOSITORY, USER]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsListingFeaturedItem", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fiscalHost","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDescription","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fullDescriptionHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPublic","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nextPayoutDate","args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "residenceCountryOrRegion","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "shortDescription","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "slug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tiers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for Sponsors tiers returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorsTierOrder", - "ofType": None - }, - "defaultValue": "{field: MONTHLY_PRICE_IN_CENTS, direction: ASC}" - }, - { - "name": "includeUnpublished", - "description": "Whether to include tiers that aren't published. Only admins of the Sponsors listing can see draft tiers. Only admins of the Sponsors listing and viewers who are currently sponsoring on a retired tier can see those retired tiers. Defaults to including only published tiers, which are visible to anyone who can see the GitHub Sponsors profile.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "OBJECT", - "name": "SponsorsTierConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "SponsorsListingFeatureableItem", - "description": "A record that can be featured on a GitHub Sponsors profile.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "SponsorsListingFeaturedItem", - "description": "A record that is promoted on a GitHub Sponsors profile.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "featureable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "SponsorsListingFeatureableItem", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "position","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsListing","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorsListingFeaturedItemFeatureableType", - "description": "The different kinds of records that can be featured on a GitHub Sponsors profile page.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "REPOSITORY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "USER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsTier", - "description": "A GitHub Sponsors tier associated with a GitHub Sponsors listing.", - "fields": [ - { - "name": "adminInfo","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTierAdminInfo", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "closestLesserValueTier","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "descriptionHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCustomAmount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isOneTime","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "monthlyPriceInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "monthlyPriceInDollars","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsListing","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsTierAdminInfo", - "description": "SponsorsTier information only visible to users that can administer the associated Sponsors listing.", - "fields": [ - { - "name": "isDraft","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPublished","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isRetired","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorships","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "includePrivate", - "description": "Whether or not to return private sponsorships using this tier. Defaults to only returning public sponsorships on this tier.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsTierConnection", - "description": "The connection type for SponsorsTier.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsTierEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorsTierEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorsTierOrder", - "description": "Ordering options for Sponsors tiers connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsTierOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorsTierOrderField", - "description": "Properties by which Sponsors tiers connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MONTHLY_PRICE_IN_CENTS","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Sponsorship", - "description": "A sponsorship relationship between a sponsor and a maintainer", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isActive","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isOneTimePayment","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSponsorOptedIntoEmail","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "maintainer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "`Sponsorship.maintainer` will be removed. Use `Sponsorship.sponsorable` instead. Removal on 2020-04-01 UTC." - }, - { - "name": "paymentSource","args": [], - "type": { - "kind": "ENUM", - "name": "SponsorshipPaymentSource", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "privacyLevel","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorshipPrivacy", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsor","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "`Sponsorship.sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead. Removal on 2020-10-01 UTC." - }, - { - "name": "sponsorEntity","args": [], - "type": { - "kind": "UNION", - "name": "Sponsor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tier","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsTier", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tierSelectedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "description": "A list of sponsorships either from the subject or received by the subject.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalRecurringMonthlyPriceInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalRecurringMonthlyPriceInDollars","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorshipEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorshipNewsletter", - "description": "An update sent to sponsors of a user or organization on GitHub Sponsors.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPublished","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorshipNewsletterConnection", - "description": "The connection type for SponsorshipNewsletter.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipNewsletterEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipNewsletter", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SponsorshipNewsletterEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorshipNewsletter", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorshipNewsletterOrder", - "description": "Ordering options for sponsorship newsletter connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorshipNewsletterOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorshipNewsletterOrderField", - "description": "Properties by which sponsorship update connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "description": "Ordering options for sponsorship connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorshipOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorshipOrderField", - "description": "Properties by which sponsorship connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorshipPaymentSource", - "description": "How payment was made for funding a GitHub Sponsors sponsorship.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "GITHUB","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PATREON","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SponsorshipPrivacy", - "description": "The privacy of a sponsorship", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PUBLIC","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PRIVATE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SquashMergeCommitMessage", - "description": "The possible default commit messages for squash merges.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PR_BODY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMIT_MESSAGES","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "BLANK","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SquashMergeCommitTitle", - "description": "The possible default commit titles for squash merges.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "PR_TITLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "COMMIT_OR_PR_TITLE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SshSignature", - "description": "Represents an SSH signature on a Commit or Tag.", - "fields": [ - { - "name": "email","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isValid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "keyFingerprint","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "payload","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signature","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "GitSignatureState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "wasSignedByGitHub","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "GitSignature", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "StarOrder", - "description": "Ways in which star connections can be ordered.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "StarOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "StarOrderField", - "description": "Properties by which star connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "STARRED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StargazerConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StargazerEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StargazerEdge", - "description": "Represents a user that's starred a repository.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "starredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Starrable", - "description": "Things that can be starred.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stargazerCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stargazers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "StarOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StargazerConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasStarred","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Gist", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "StarredRepositoryConnection", - "description": "The connection type for Repository.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StarredRepositoryEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isOverLimit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StarredRepositoryEdge", - "description": "Represents a starred repository.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "starredAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "StartOrganizationMigrationInput", - "description": "Autogenerated input type of StartOrganizationMigration", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sourceOrgUrl","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "targetOrgName","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "targetEnterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "sourceAccessToken","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StartOrganizationMigrationPayload", - "description": "Autogenerated return type of StartOrganizationMigration", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "orgMigration","args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationMigration", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "StartRepositoryMigrationInput", - "description": "Autogenerated input type of StartRepositoryMigration", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sourceId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "sourceRepositoryUrl","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryName","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "continueOnError","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "gitArchiveUrl","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "metadataArchiveUrl","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "accessToken","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "githubPat","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "skipReleases","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "targetRepoVisibility","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "lockSource","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StartRepositoryMigrationPayload", - "description": "Autogenerated return type of StartRepositoryMigration", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryMigration","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryMigration", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Status", - "description": "Represents a commit status.", - "fields": [ - { - "name": "combinedContexts","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusCheckRollupContextConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "context","args": [ - { - "name": "name", - "description": "The context name.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "StatusContext", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contexts","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusContext", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StatusCheckConfiguration", - "description": "Required status check", - "fields": [ - { - "name": "context","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "integrationId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusCheckConfigurationInput", - "description": "Required status check", - "fields": None, - "inputFields": [ - { - "name": "context","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "integrationId","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StatusCheckRollup", - "description": "Represents the rollup for both the check runs and status for a commit.", - "fields": [ - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contexts","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusCheckRollupContextConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "StatusCheckRollupContext", - "description": "Types that can be inside a StatusCheckRollup context.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CheckRun", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "StatusContext", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "StatusCheckRollupContextConnection", - "description": "The connection type for StatusCheckRollupContext.", - "fields": [ - { - "name": "checkRunCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "checkRunCountsByState","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckRunStateCount", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusCheckRollupContextEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "StatusCheckRollupContext", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "statusContextCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "statusContextCountsByState","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusContextStateCount", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StatusCheckRollupContextEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "StatusCheckRollupContext", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StatusContext", - "description": "Represents an individual commit status context", - "fields": [ - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "40" - } - ], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commit","args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "context","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "creator","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isRequired","args": [ - { - "name": "pullRequestId", - "description": "The id of the pull request this is required for", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestNumber", - "description": "The number of the pull request this is required for", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "targetUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RequirableByPullRequest", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StatusContextStateCount", - "description": "Represents a count of the state of a status context.", - "fields": [ - { - "name": "count","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "StatusState", - "description": "The possible commit status states.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "EXPECTED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ERROR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FAILURE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PENDING","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUCCESS","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "String", - "description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "StripeConnectAccount", - "description": "A Stripe Connect account for receiving sponsorship funds from GitHub Sponsors.", - "fields": [ - { - "name": "accountId","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "billingCountryOrRegion","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "countryOrRegion","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isActive","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsListing","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stripeDashboardUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "SubmitPullRequestReviewInput", - "description": "Autogenerated input type of SubmitPullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "event","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewEvent", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SubmitPullRequestReviewPayload", - "description": "Autogenerated return type of SubmitPullRequestReview", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReview","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Submodule", - "description": "A pointer to a repository at a specific revision embedded inside another repository.", - "fields": [ - { - "name": "branch","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "gitUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nameRaw","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Base64String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pathRaw","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Base64String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subprojectCommitOid","args": [], - "type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SubmoduleConnection", - "description": "The connection type for Submodule.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SubmoduleEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Submodule", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SubmoduleEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Submodule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "description": "Entities that can be subscribed to for web and email notifications.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSubscribe","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerSubscription","args": [], - "type": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - } - ] - }, - { - "kind": "INTERFACE", - "name": "SubscribableThread", - "description": "Entities that can be subscribed to for web and email notifications.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerThreadSubscriptionFormAction","args": [], - "type": { - "kind": "ENUM", - "name": "ThreadSubscriptionFormAction", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerThreadSubscriptionStatus","args": [], - "type": { - "kind": "ENUM", - "name": "ThreadSubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "SubscribedEvent", - "description": "Represents a 'subscribed' event on a given `Subscribable`.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subscribable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "SubscriptionState", - "description": "The possible states of a subscription.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "UNSUBSCRIBED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIBED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IGNORED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "SuggestedReviewer", - "description": "A suggestion to review a pull request based on a user's commit history and review comments.", - "fields": [ - { - "name": "isAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCommenter","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Tag", - "description": "Represents a Git tag.", - "fields": [ - { - "name": "abbreviatedOid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tagger","args": [], - "type": { - "kind": "OBJECT", - "name": "GitActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "target","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TagNamePatternParameters", - "description": "Parameters to be used for the tag_name_pattern rule", - "fields": [ - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "negate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operator","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pattern","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "TagNamePatternParametersInput", - "description": "Parameters to be used for the tag_name_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "negate","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "operator","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "pattern","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Team", - "description": "A team of users in an organization.", - "fields": [ - { - "name": "ancestors","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size in pixels of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "400" - } - ], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "childTeams","args": [ - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userLogins", - "description": "User logins to filter by", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "immediateOnly", - "description": "Whether to list immediate child teams or all descendant child teams.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "combinedSlug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [ - { - "name": "number", - "description": "The sequence number of the discussion to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isPinned", - "description": "If provided, filters discussions according to whether or not they are pinned.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamDiscussionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamDiscussionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussionsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussionsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editTeamResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editTeamUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invitations","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationInvitationConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "memberStatuses","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for user statuses returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UserStatusOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserStatusConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "members","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "The search string to look for.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "membership", - "description": "Filter by membership type", - "type": { - "kind": "ENUM", - "name": "TeamMembershipType", - "ofType": None - }, - "defaultValue": "ALL" - }, - { - "name": "role", - "description": "Filter by team member role", - "type": { - "kind": "ENUM", - "name": "TeamMemberRole", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamMemberOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamMemberConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "membersUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "newTeamResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "newTeamUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "notificationSetting","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TeamNotificationSetting", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeam","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "privacy","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TeamPrivacy", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [ - { - "name": "number", - "description": "The Project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsV2","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "ofType": None - }, - "defaultValue": "{field: NUMBER, direction: DESC}" - }, - { - "name": "filterBy", - "description": "Filtering options for projects returned from this connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Filters", - "ofType": None - }, - "defaultValue": "{}" - }, - { - "name": "query", - "description": "The query to search projects by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositories","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "query", - "description": "The search string to look for. Repositories will be returned where the name contains your search string.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamRepositoryOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamRepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoriesResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoriesUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewRequestDelegationAlgorithm","args": [], - "type": { - "kind": "ENUM", - "name": "TeamReviewAssignmentAlgorithm", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewRequestDelegationEnabled","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewRequestDelegationMemberCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reviewRequestDelegationNotifyTeam","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "slug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanAdminister","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSubscribe","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerSubscription","args": [], - "type": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "MemberStatusable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamAddMemberAuditEntry", - "description": "Audit log entry for a team.add_member event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isLdapMapped","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "TeamAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamAddRepositoryAuditEntry", - "description": "Audit log entry for a team.add_repository event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isLdapMapped","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "TeamAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "TeamAuditEntryData", - "description": "Metadata for an audit entry with action team.*", - "fields": [ - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipTeamAuditEntryData", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamAddRepositoryAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamChangeParentTeamAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveMemberAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveRepositoryAuditEntry", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "TeamChangeParentTeamAuditEntry", - "description": "Audit log entry for a team.change_parent_team event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isLdapMapped","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeam","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeamName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeamNameWas","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeamResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeamUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeamWas","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeamWasResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "parentTeamWasUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "TeamAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamConnection", - "description": "The connection type for Team.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "description": "A team discussion.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyVersion","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "comments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamDiscussionCommentOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "fromComment", - "description": "When provided, filters the connection such that results begin with the comment with this number.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamDiscussionCommentConnection", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "commentsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "commentsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPinned","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "isPrivate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "team","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "title","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanPin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSubscribe","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerSubscription","args": [], - "type": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "description": "A comment on a team discussion.", - "fields": [ - { - "name": "author","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "authorAssociation","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "body","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyText","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bodyVersion","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdViaEmail","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "includesCreatedEdit","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastEditedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "number","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "publishedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactionGroups","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionGroup", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "reactions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": { - "kind": "ENUM", - "name": "ReactionContent", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReactionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC." - }, - { - "name": "userContentEdits","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanDelete","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReact","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerDidAuthor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Comment", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionCommentConnection", - "description": "The connection type for TeamDiscussionComment.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamDiscussionCommentEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamDiscussionCommentOrder", - "description": "Ways in which team discussion comment connections can be ordered.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TeamDiscussionCommentOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamDiscussionCommentOrderField", - "description": "Properties by which team discussion comment connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NUMBER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionConnection", - "description": "The connection type for TeamDiscussion.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamDiscussionEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamDiscussionOrder", - "description": "Ways in which team discussion connections can be ordered.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TeamDiscussionOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamDiscussionOrderField", - "description": "Properties by which team discussion connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamMemberConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamMemberEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamMemberEdge", - "description": "Represents a user who is a member of a team.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "memberAccessResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "memberAccessUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "role","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TeamMemberRole", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberOrder", - "description": "Ordering options for team member connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TeamMemberOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamMemberOrderField", - "description": "Properties by which team member connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "LOGIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamMemberRole", - "description": "The possible team member roles; either 'maintainer' or 'member'.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "MAINTAINER","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MEMBER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamMembershipType", - "description": "Defines which types of team members are included in the returned list. Can be one of IMMEDIATE, CHILD_TEAM or ALL.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "IMMEDIATE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CHILD_TEAM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ALL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamNotificationSetting", - "description": "The possible team notification values.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NOTIFICATIONS_ENABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NOTIFICATIONS_DISABLED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamOrder", - "description": "Ways in which team connections can be ordered.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TeamOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamOrderField", - "description": "Properties by which team connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamPrivacy", - "description": "The possible team privacy values.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "SECRET","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VISIBLE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveMemberAuditEntry", - "description": "Audit log entry for a team.remove_member event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isLdapMapped","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "TeamAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamRemoveRepositoryAuditEntry", - "description": "Audit log entry for a team.remove_repository event.", - "fields": [ - { - "name": "action","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actor","args": [], - "type": { - "kind": "UNION", - "name": "AuditEntryActor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorIp","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLocation","args": [], - "type": { - "kind": "OBJECT", - "name": "ActorLocation", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "actorUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "PreciseDateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isLdapMapped","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "operationType","args": [], - "type": { - "kind": "ENUM", - "name": "OperationType", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userLogin","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userResourcePath","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "userUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AuditEntry", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "TeamAuditEntryData", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamRepositoryConnection", - "description": "The connection type for Repository.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TeamRepositoryEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TeamRepositoryEdge", - "description": "Represents a team repository.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "permission","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryPermission", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamRepositoryOrder", - "description": "Ordering options for team repository connections", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "TeamRepositoryOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamRepositoryOrderField", - "description": "Properties by which team repository connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PUSHED_AT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NAME","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PERMISSION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "STARGAZERS","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamReviewAssignmentAlgorithm", - "description": "The possible team review assignment algorithms", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ROUND_ROBIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LOAD_BALANCE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TeamRole", - "description": "The role of a user on a team.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ADMIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MEMBER","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TextMatch", - "description": "A text match within a search result.", - "fields": [ - { - "name": "fragment","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "highlights","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TextMatchHighlight", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "property","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TextMatchHighlight", - "description": "Represents a single highlight in a search result match.", - "fields": [ - { - "name": "beginIndice","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "endIndice","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "text","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ThreadSubscriptionFormAction", - "description": "The possible states of a thread subscription form action", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIBE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNSUBSCRIBE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "ThreadSubscriptionState", - "description": "The possible states of a subscription.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "UNAVAILABLE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IGNORING_LIST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIBED_TO_THREAD_EVENTS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "IGNORING_THREAD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIBED_TO_LIST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIBED_TO_THREAD_TYPE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIBED_TO_THREAD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NONE","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Topic", - "description": "A topic aggregates entities that are related to a subject.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "relatedTopics","args": [ - { - "name": "first", - "description": "How many topics to return.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "3" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositories","args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": "[OWNER, COLLABORATOR]" - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableOnly", - "description": "If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stargazerCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "stargazers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "StarOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StargazerConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasStarred","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Starrable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "TopicAuditEntryData", - "description": "Metadata for an audit entry with a topic.", - "fields": [ - { - "name": "topic","args": [], - "type": { - "kind": "OBJECT", - "name": "Topic", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topicName","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "RepoAddTopicAuditEntry", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepoRemoveTopicAuditEntry", - "ofType": None - } - ] - }, - { - "kind": "ENUM", - "name": "TopicSuggestionDeclineReason", - "description": "Reason that the suggested topic is declined.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NOT_RELEVANT","isDeprecated": True, - }, - { - "name": "TOO_SPECIFIC","isDeprecated": True, - }, - { - "name": "PERSONAL_PREFERENCE","isDeprecated": True, - }, - { - "name": "TOO_GENERAL","isDeprecated": True, - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "TrackedIssueStates", - "description": "The possible states of a tracked issue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "OPEN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CLOSED","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "TransferEnterpriseOrganizationInput", - "description": "Autogenerated input type of TransferEnterpriseOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "destinationEnterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TransferEnterpriseOrganizationPayload", - "description": "Autogenerated return type of TransferEnterpriseOrganization", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "TransferIssueInput", - "description": "Autogenerated input type of TransferIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "issueId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "createLabelsIfMissing","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TransferIssuePayload", - "description": "Autogenerated return type of TransferIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TransferredEvent", - "description": "Represents a 'transferred' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fromRepository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "Tree", - "description": "Represents a Git tree.", - "fields": [ - { - "name": "abbreviatedOid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "entries","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "TreeEntry", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "TreeEntry", - "description": "Represents a Git tree entry.", - "fields": [ - { - "name": "extension","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isGenerated","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "language","args": [], - "type": { - "kind": "OBJECT", - "name": "Language", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lineCount","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mode","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nameRaw","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Base64String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "object","args": [], - "type": { - "kind": "INTERFACE", - "name": "GitObject", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "oid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pathRaw","args": [], - "type": { - "kind": "SCALAR", - "name": "Base64String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "size","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "submodule","args": [], - "type": { - "kind": "OBJECT", - "name": "Submodule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "type","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "URI", - "description": "An RFC 3986, RFC 3987, and RFC 6570 (level 4) compliant URI string.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnarchiveProjectV2ItemInput", - "description": "Autogenerated input type of UnarchiveProjectV2Item", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "itemId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnarchiveProjectV2ItemPayload", - "description": "Autogenerated return type of UnarchiveProjectV2Item", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnarchiveRepositoryInput", - "description": "Autogenerated input type of UnarchiveRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnarchiveRepositoryPayload", - "description": "Autogenerated return type of UnarchiveRepository", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnassignedEvent", - "description": "Represents an 'unassigned' event on any assignable object.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assignable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Assignable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "assignee","args": [], - "type": { - "kind": "UNION", - "name": "Assignee", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": True, - "deprecationReason": "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC." - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnfollowOrganizationInput", - "description": "Autogenerated input type of UnfollowOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnfollowOrganizationPayload", - "description": "Autogenerated return type of UnfollowOrganization", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnfollowUserInput", - "description": "Autogenerated input type of UnfollowUser", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "userId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnfollowUserPayload", - "description": "Autogenerated return type of UnfollowUser", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "description": "Represents a type that can be retrieved by a URL.", - "fields": [ - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Bot", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CheckRun", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ClosedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Commit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ConvertToDraftEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "CrossReferencedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Gist", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Mannequin", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "MergedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Milestone", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestCommit", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReadyForReviewEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Release", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "RepositoryTopic", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ReviewDismissedEvent", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Workflow", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "WorkflowRun", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "WorkflowRunFile", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "UnknownSignature", - "description": "Represents an unknown signature on a Commit or Tag.", - "fields": [ - { - "name": "email","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isValid","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "payload","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signature","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "signer","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "GitSignatureState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "wasSignedByGitHub","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "GitSignature", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnlabeledEvent", - "description": "Represents an 'unlabeled' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "label","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "labelable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Labelable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnlinkProjectV2FromRepositoryInput", - "description": "Autogenerated input type of UnlinkProjectV2FromRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnlinkProjectV2FromRepositoryPayload", - "description": "Autogenerated return type of UnlinkProjectV2FromRepository", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnlinkProjectV2FromTeamInput", - "description": "Autogenerated input type of UnlinkProjectV2FromTeam", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "teamId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnlinkProjectV2FromTeamPayload", - "description": "Autogenerated return type of UnlinkProjectV2FromTeam", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnlinkRepositoryFromProjectInput", - "description": "Autogenerated input type of UnlinkRepositoryFromProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnlinkRepositoryFromProjectPayload", - "description": "Autogenerated return type of UnlinkRepositoryFromProject", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnlockLockableInput", - "description": "Autogenerated input type of UnlockLockable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "lockableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnlockLockablePayload", - "description": "Autogenerated return type of UnlockLockable", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unlockedRecord","args": [], - "type": { - "kind": "INTERFACE", - "name": "Lockable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnlockedEvent", - "description": "Represents an 'unlocked' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lockable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Lockable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnmarkDiscussionCommentAsAnswerInput", - "description": "Autogenerated input type of UnmarkDiscussionCommentAsAnswer", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnmarkDiscussionCommentAsAnswerPayload", - "description": "Autogenerated return type of UnmarkDiscussionCommentAsAnswer", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnmarkFileAsViewedInput", - "description": "Autogenerated input type of UnmarkFileAsViewed", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnmarkFileAsViewedPayload", - "description": "Autogenerated return type of UnmarkFileAsViewed", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnmarkIssueAsDuplicateInput", - "description": "Autogenerated input type of UnmarkIssueAsDuplicate", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "duplicateId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "canonicalId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnmarkIssueAsDuplicatePayload", - "description": "Autogenerated return type of UnmarkIssueAsDuplicate", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "duplicate","args": [], - "type": { - "kind": "UNION", - "name": "IssueOrPullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnmarkProjectV2AsTemplateInput", - "description": "Autogenerated input type of UnmarkProjectV2AsTemplate", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnmarkProjectV2AsTemplatePayload", - "description": "Autogenerated return type of UnmarkProjectV2AsTemplate", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnmarkedAsDuplicateEvent", - "description": "Represents an 'unmarked_as_duplicate' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "canonical","args": [], - "type": { - "kind": "UNION", - "name": "IssueOrPullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "duplicate","args": [], - "type": { - "kind": "UNION", - "name": "IssueOrPullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCrossRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnminimizeCommentInput", - "description": "Autogenerated input type of UnminimizeComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "subjectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnminimizeCommentPayload", - "description": "Autogenerated return type of UnminimizeComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "unminimizedComment","args": [], - "type": { - "kind": "INTERFACE", - "name": "Minimizable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnpinIssueInput", - "description": "Autogenerated input type of UnpinIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "issueId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnpinIssuePayload", - "description": "Autogenerated return type of UnpinIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnpinnedEvent", - "description": "Represents an 'unpinned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnresolveReviewThreadInput", - "description": "Autogenerated input type of UnresolveReviewThread", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "threadId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnresolveReviewThreadPayload", - "description": "Autogenerated return type of UnresolveReviewThread", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "thread","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsubscribeFromNotificationsInput", - "description": "Autogenerated input type of UnsubscribeFromNotifications", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ids","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnsubscribeFromNotificationsPayload", - "description": "Autogenerated return type of UnsubscribeFromNotifications", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "success","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UnsubscribedEvent", - "description": "Represents an 'unsubscribed' event on a given `Subscribable`.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subscribable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "description": "Entities that can be updated.", - "fields": [ - { - "name": "viewerCanUpdate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "GistComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - } - ] - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "description": "Comments that can be updated.", - "fields": [ - { - "name": "viewerCannotUpdateReasons","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CommitComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "GistComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateBranchProtectionRuleInput", - "description": "Autogenerated input type of UpdateBranchProtectionRule", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "branchProtectionRuleId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "pattern","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresApprovingReviews","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiredApprovingReviewCount","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresCommitSignatures","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresLinearHistory","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "blocksCreations","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "allowsForcePushes","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "allowsDeletions","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isAdminEnforced","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresStatusChecks","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresStrictStatusChecks","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiresCodeOwnerReviews","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "dismissesStaleReviews","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "restrictsReviewDismissals","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "reviewDismissalActorIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "bypassPullRequestActorIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "bypassForcePushActorIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "restrictsPushes","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pushActorIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "requiredStatusCheckContexts","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "requiredStatusChecks","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusCheckInput", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "requiresDeployments","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requiredDeploymentEnvironments","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "requiresConversationResolution","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "requireLastPushApproval","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "lockBranch","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "lockAllowsFetchAndMerge","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateBranchProtectionRulePayload", - "description": "Autogenerated return type of UpdateBranchProtectionRule", - "fields": [ - { - "name": "branchProtectionRule","args": [], - "type": { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCheckRunInput", - "description": "Autogenerated input type of UpdateCheckRun", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "checkRunId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "detailsUrl","type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "externalId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "status","type": { - "kind": "ENUM", - "name": "RequestableCheckStatusState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "startedAt","type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "conclusion","type": { - "kind": "ENUM", - "name": "CheckConclusionState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "completedAt","type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "output","type": { - "kind": "INPUT_OBJECT", - "name": "CheckRunOutput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "actions","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CheckRunAction", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateCheckRunPayload", - "description": "Autogenerated return type of UpdateCheckRun", - "fields": [ - { - "name": "checkRun","args": [], - "type": { - "kind": "OBJECT", - "name": "CheckRun", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCheckSuitePreferencesInput", - "description": "Autogenerated input type of UpdateCheckSuitePreferences", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "autoTriggerPreferences","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CheckSuiteAutoTriggerPreference", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateCheckSuitePreferencesPayload", - "description": "Autogenerated return type of UpdateCheckSuitePreferences", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateDiscussionCommentInput", - "description": "Autogenerated input type of UpdateDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "commentId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateDiscussionCommentPayload", - "description": "Autogenerated return type of UpdateDiscussionComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "comment","args": [], - "type": { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateDiscussionInput", - "description": "Autogenerated input type of UpdateDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "discussionId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "categoryId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateDiscussionPayload", - "description": "Autogenerated return type of UpdateDiscussion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "discussion","args": [], - "type": { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseAdministratorRoleInput", - "description": "Autogenerated input type of UpdateEnterpriseAdministratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "login","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "role","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseAdministratorRolePayload", - "description": "Autogenerated return type of UpdateEnterpriseAdministratorRole", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "policyValue","type": { - "kind": "ENUM", - "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseDefaultRepositoryPermissionSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseDefaultRepositoryPermissionSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "ENUM", - "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "membersCanCreateRepositoriesPolicyEnabled","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "membersCanCreatePublicRepositories","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "membersCanCreatePrivateRepositories","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "membersCanCreateInternalRepositories","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanCreateRepositoriesSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanDeleteIssuesSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanMakePurchasesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseMembersCanMakePurchasesSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanMakePurchasesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanMakePurchasesSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseOrganizationProjectsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseOrganizationProjectsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseOrganizationProjectsSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseOwnerOrganizationRoleInput", - "description": "Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "organizationRole","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RoleInOrganization", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseOwnerOrganizationRolePayload", - "description": "Autogenerated return type of UpdateEnterpriseOwnerOrganizationRole", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseProfileInput", - "description": "Autogenerated input type of UpdateEnterpriseProfile", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "websiteUrl","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "location","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseProfilePayload", - "description": "Autogenerated return type of UpdateEnterpriseProfile", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseRepositoryProjectsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseRepositoryProjectsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseRepositoryProjectsSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseTeamDiscussionsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseTeamDiscussionsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseTeamDiscussionsSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enterpriseId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprise","args": [], - "type": { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnvironmentInput", - "description": "Autogenerated input type of UpdateEnvironment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "environmentId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "waitTimer","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "reviewers","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "preventSelfReview","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateEnvironmentPayload", - "description": "Autogenerated return type of UpdateEnvironment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "environment","args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListEnabledSettingInput", - "description": "Autogenerated input type of UpdateIpAllowListEnabledSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListEnabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateIpAllowListEnabledSettingPayload", - "description": "Autogenerated return type of UpdateIpAllowListEnabledSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "UNION", - "name": "IpAllowListOwner", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListEntryInput", - "description": "Autogenerated input type of UpdateIpAllowListEntry", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ipAllowListEntryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "allowListValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isActive","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateIpAllowListEntryPayload", - "description": "Autogenerated return type of UpdateIpAllowListEntry", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ipAllowListEntry","args": [], - "type": { - "kind": "OBJECT", - "name": "IpAllowListEntry", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListForInstalledAppsEnabledSettingInput", - "description": "Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListForInstalledAppsEnabledSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateIpAllowListForInstalledAppsEnabledSettingPayload", - "description": "Autogenerated return type of UpdateIpAllowListForInstalledAppsEnabledSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "UNION", - "name": "IpAllowListOwner", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIssueCommentInput", - "description": "Autogenerated input type of UpdateIssueComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateIssueCommentPayload", - "description": "Autogenerated return type of UpdateIssueComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issueComment","args": [], - "type": { - "kind": "OBJECT", - "name": "IssueComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIssueInput", - "description": "Autogenerated input type of UpdateIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "assigneeIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "milestoneId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labelIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "state","type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateIssuePayload", - "description": "Autogenerated return type of UpdateIssue", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issue","args": [], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateLabelInput", - "description": "Autogenerated input type of UpdateLabel", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "color","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateLabelPayload", - "description": "Autogenerated return type of UpdateLabel", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "label","args": [], - "type": { - "kind": "OBJECT", - "name": "Label", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateNotificationRestrictionSettingInput", - "description": "Autogenerated input type of UpdateNotificationRestrictionSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownerId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "settingValue","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "NotificationRestrictionSettingValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateNotificationRestrictionSettingPayload", - "description": "Autogenerated return type of UpdateNotificationRestrictionSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "UNION", - "name": "VerifiableDomainOwner", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", - "description": "Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "forkingEnabled","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload", - "description": "Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationWebCommitSignoffSettingInput", - "description": "Autogenerated input type of UpdateOrganizationWebCommitSignoffSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "organizationId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "webCommitSignoffRequired","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateOrganizationWebCommitSignoffSettingPayload", - "description": "Autogenerated return type of UpdateOrganizationWebCommitSignoffSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateParameters", - "description": "Only allow users with bypass permission to update matching refs.", - "fields": [ - { - "name": "updateAllowsFetchAndMerge","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateParametersInput", - "description": "Only allow users with bypass permission to update matching refs.", - "fields": None, - "inputFields": [ - { - "name": "updateAllowsFetchAndMerge","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePatreonSponsorabilityInput", - "description": "Autogenerated input type of UpdatePatreonSponsorability", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enablePatreonSponsorships","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdatePatreonSponsorabilityPayload", - "description": "Autogenerated return type of UpdatePatreonSponsorability", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsListing","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectCardInput", - "description": "Autogenerated input type of UpdateProjectCard", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectCardId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "isArchived","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "note","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateProjectCardPayload", - "description": "Autogenerated return type of UpdateProjectCard", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectCard","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectCard", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectColumnInput", - "description": "Autogenerated input type of UpdateProjectColumn", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectColumnId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateProjectColumnPayload", - "description": "Autogenerated return type of UpdateProjectColumn", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectColumn","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectColumn", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectInput", - "description": "Autogenerated input type of UpdateProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "state","type": { - "kind": "ENUM", - "name": "ProjectState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "public","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateProjectPayload", - "description": "Autogenerated return type of UpdateProject", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2CollaboratorsInput", - "description": "Autogenerated input type of UpdateProjectV2Collaborators", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "collaborators","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Collaborator", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2CollaboratorsPayload", - "description": "Autogenerated return type of UpdateProjectV2Collaborators", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "collaborators","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2ActorConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2DraftIssueInput", - "description": "Autogenerated input type of UpdateProjectV2DraftIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "draftIssueId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "assigneeIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2DraftIssuePayload", - "description": "Autogenerated return type of UpdateProjectV2DraftIssue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "draftIssue","args": [], - "type": { - "kind": "OBJECT", - "name": "DraftIssue", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2Input", - "description": "Autogenerated input type of UpdateProjectV2", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "shortDescription","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "readme","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "closed","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "public","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2ItemFieldValueInput", - "description": "Autogenerated input type of UpdateProjectV2ItemFieldValue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "itemId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "fieldId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "value","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldValue", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2ItemFieldValuePayload", - "description": "Autogenerated return type of UpdateProjectV2ItemFieldValue", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2Item","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2Item", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2ItemPositionInput", - "description": "Autogenerated input type of UpdateProjectV2ItemPosition", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "projectId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "itemId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "afterId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2ItemPositionPayload", - "description": "Autogenerated return type of UpdateProjectV2ItemPosition", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "items","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2ItemConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2Payload", - "description": "Autogenerated return type of UpdateProjectV2", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestBranchInput", - "description": "Autogenerated input type of UpdatePullRequestBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "expectedHeadOid","type": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "updateMethod","type": { - "kind": "ENUM", - "name": "PullRequestBranchUpdateMethod", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdatePullRequestBranchPayload", - "description": "Autogenerated return type of UpdatePullRequestBranch", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestInput", - "description": "Autogenerated input type of UpdatePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "baseRefName","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "state","type": { - "kind": "ENUM", - "name": "PullRequestUpdateState", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "maintainerCanModify","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "assigneeIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "milestoneId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labelIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "projectIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdatePullRequestPayload", - "description": "Autogenerated return type of UpdatePullRequest", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequest","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestReviewCommentInput", - "description": "Autogenerated input type of UpdatePullRequestReviewComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewCommentId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdatePullRequestReviewCommentPayload", - "description": "Autogenerated return type of UpdatePullRequestReviewComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReviewComment","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestReviewInput", - "description": "Autogenerated input type of UpdatePullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pullRequestReviewId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdatePullRequestReviewPayload", - "description": "Autogenerated return type of UpdatePullRequestReview", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequestReview","args": [], - "type": { - "kind": "OBJECT", - "name": "PullRequestReview", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRefInput", - "description": "Autogenerated input type of UpdateRef", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "refId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "oid","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "GitObjectID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "force","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateRefPayload", - "description": "Autogenerated return type of UpdateRef", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "OBJECT", - "name": "Ref", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRefsInput", - "description": "Autogenerated input type of UpdateRefs", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "refUpdates","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RefUpdate", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateRefsPayload", - "description": "Autogenerated return type of UpdateRefs", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryInput", - "description": "Autogenerated input type of UpdateRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "template","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "homepageUrl","type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasWikiEnabled","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasIssuesEnabled","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasProjectsEnabled","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasDiscussionsEnabled","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasSponsorshipsEnabled","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateRepositoryPayload", - "description": "Autogenerated return type of UpdateRepository", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryRulesetInput", - "description": "Autogenerated input type of UpdateRepositoryRuleset", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryRulesetId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "target","type": { - "kind": "ENUM", - "name": "RepositoryRulesetTarget", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "rules","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleInput", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "conditions","type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleConditionsInput", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "enforcement","type": { - "kind": "ENUM", - "name": "RuleEnforcement", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "bypassActors","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRulesetBypassActorInput", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateRepositoryRulesetPayload", - "description": "Autogenerated return type of UpdateRepositoryRuleset", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ruleset","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryWebCommitSignoffSettingInput", - "description": "Autogenerated input type of UpdateRepositoryWebCommitSignoffSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "webCommitSignoffRequired","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateRepositoryWebCommitSignoffSettingPayload", - "description": "Autogenerated return type of UpdateRepositoryWebCommitSignoffSetting", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateSponsorshipPreferencesInput", - "description": "Autogenerated input type of UpdateSponsorshipPreferences", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableId","type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogin","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "receiveEmails","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "privacyLevel","type": { - "kind": "ENUM", - "name": "SponsorshipPrivacy", - "ofType": None - }, - "defaultValue": "PUBLIC" - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateSponsorshipPreferencesPayload", - "description": "Autogenerated return type of UpdateSponsorshipPreferences", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorship","args": [], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateSubscriptionInput", - "description": "Autogenerated input type of UpdateSubscription", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "subscribableId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "state","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SubscriptionState", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateSubscriptionPayload", - "description": "Autogenerated return type of UpdateSubscription", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subscribable","args": [], - "type": { - "kind": "INTERFACE", - "name": "Subscribable", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamDiscussionCommentInput", - "description": "Autogenerated input type of UpdateTeamDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "bodyVersion","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateTeamDiscussionCommentPayload", - "description": "Autogenerated return type of UpdateTeamDiscussionComment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamDiscussionComment","args": [], - "type": { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamDiscussionInput", - "description": "Autogenerated input type of UpdateTeamDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "title","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "body","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "bodyVersion","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "pinned","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateTeamDiscussionPayload", - "description": "Autogenerated return type of UpdateTeamDiscussion", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teamDiscussion","args": [], - "type": { - "kind": "OBJECT", - "name": "TeamDiscussion", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamReviewAssignmentInput", - "description": "Autogenerated input type of UpdateTeamReviewAssignment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "enabled","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "algorithm","type": { - "kind": "ENUM", - "name": "TeamReviewAssignmentAlgorithm", - "ofType": None - }, - "defaultValue": "ROUND_ROBIN" - }, - { - "name": "teamMemberCount","type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": "1" - }, - { - "name": "notifyTeam","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "removeTeamRequest","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "includeChildTeamMembers","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "countMembersAlreadyRequested","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - }, - { - "name": "excludedTeamMemberIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateTeamReviewAssignmentPayload", - "description": "Autogenerated return type of UpdateTeamReviewAssignment", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "team","args": [], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamsRepositoryInput", - "description": "Autogenerated input type of UpdateTeamsRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "teamIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "permission","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryPermission", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateTeamsRepositoryPayload", - "description": "Autogenerated return type of UpdateTeamsRepository", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "teams","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTopicsInput", - "description": "Autogenerated input type of UpdateTopics", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "topicNames","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateTopicsPayload", - "description": "Autogenerated return type of UpdateTopics", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "invalidTopicNames","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateUserListInput", - "description": "Autogenerated input type of UpdateUserList", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "listId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "name","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "description","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isPrivate","type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateUserListPayload", - "description": "Autogenerated return type of UpdateUserList", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "list","args": [], - "type": { - "kind": "OBJECT", - "name": "UserList", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateUserListsForItemInput", - "description": "Autogenerated input type of UpdateUserListsForItem", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "itemId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "listIds","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - } - }, - "defaultValue": None - }, - { - "name": "suggestedListIds","type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UpdateUserListsForItemPayload", - "description": "Autogenerated return type of UpdateUserListsForItem", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "item","args": [], - "type": { - "kind": "UNION", - "name": "UserListItems", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lists","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserList", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "User", - "description": "A user is an individual's account on GitHub that owns repositories and can make new content.", - "fields": [ - { - "name": "anyPinnableItems","args": [ - { - "name": "type", - "description": "Filter to only a particular kind of pinnable item.", - "type": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "avatarUrl","args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bio","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "bioHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "canReceiveOrganizationEmailsWhenNotificationsRestricted","args": [ - { - "name": "login", - "description": "The login of the organization to check.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "commitComments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "company","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "companyHTML","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "contributionsCollection","args": [ - { - "name": "organizationID", - "description": "The ID of the organization used to filter contributions.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "from", - "description": "Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "to", - "description": "Only contributions made before and up to (including) this time will be counted. If omitted, defaults to the current time or one year from the provided from argument.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ContributionsCollection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "email","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enterprises","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the User's enterprises.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseOrder", - "ofType": None - }, - "defaultValue": "{field: NAME, direction: ASC}" - }, - { - "name": "membershipType", - "description": "Filter enterprises returned based on the user's membership type.", - "type": { - "kind": "ENUM", - "name": "EnterpriseMembershipType", - "ofType": None - }, - "defaultValue": "ALL" - } - ], - "type": { - "kind": "OBJECT", - "name": "EnterpriseConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "estimatedNextSponsorsPayoutInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "followers","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "FollowerConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "following","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "FollowingConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "gist","args": [ - { - "name": "name", - "description": "The gist name to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Gist", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "gistComments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GistCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "gists","args": [ - { - "name": "privacy", - "description": "Filters Gists according to privacy.", - "type": { - "kind": "ENUM", - "name": "GistPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for gists returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "GistOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "GistConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasSponsorsListing","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hovercard","args": [ - { - "name": "primarySubjectId", - "description": "The ID of the subject to get the hovercard in the context of", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Hovercard", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "interactionAbility","args": [], - "type": { - "kind": "OBJECT", - "name": "RepositoryInteractionAbility", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isBountyHunter","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isCampusExpert","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDeveloperProgramMember","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isEmployee","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isFollowingViewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isGitHubStar","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isHireable","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSiteAdmin","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSponsoredBy","args": [ - { - "name": "accountLogin", - "description": "The target account's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isSponsoringViewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isViewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issueComments","args": [ - { - "name": "orderBy", - "description": "Ordering options for issue comments returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueCommentOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "issues","args": [ - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the issues by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "filterBy", - "description": "Filtering options for issues returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueFilters", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "itemShowcase","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProfileItemShowcase", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lifetimeReceivedSponsorshipValues","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for results returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorAndLifetimeValueOrder", - "ofType": None - }, - "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lists","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserListConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "location","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "login","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "monthlyEstimatedSponsorsIncomeInCents","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [ - { - "name": "login", - "description": "The login of the organization to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizationVerifiedDomainEmails","args": [ - { - "name": "login", - "description": "The login of the organization to match verified domains from.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organizations","args": [ - { - "name": "orderBy", - "description": "Ordering options for the User's organizations.", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "packages","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "names", - "description": "Find packages by their names.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "description": "Find packages in a repository by ID.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "packageType", - "description": "Filter registry package by type.", - "type": { - "kind": "ENUM", - "name": "PackageType", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PackageOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PackageConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnableItems","args": [ - { - "name": "types", - "description": "Filter the types of pinnable items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedItems","args": [ - { - "name": "types", - "description": "Filter the types of pinned items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PinnableItemType", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pinnedItemsRemaining","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "project","args": [ - { - "name": "number", - "description": "The project number to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectV2","args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectV2", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projects","args": [ - { - "name": "orderBy", - "description": "Ordering options for projects returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "search", - "description": "Query to search projects by, currently only searching by name.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "states", - "description": "A list of states to filter the projects by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsResourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "projectsV2","args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "ofType": None - }, - "defaultValue": "{field: NUMBER, direction: DESC}" - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pronouns","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "publicKeys","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PublicKeyConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pullRequests","args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestState", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "recentProjects","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositories","args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": "[OWNER, COLLABORATOR]" - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isArchived", - "description": "If non-null, filters repositories according to whether they are archived and not maintained", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isFork", - "description": "If non-null, filters repositories according to whether they are forks of another repository", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoriesContributedTo","args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy", - "type": { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasIssues", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "includeUserRepositories", - "description": "If true, include user repositories", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "contributionTypes", - "description": "If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY]", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryContributionType", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repository","args": [ - { - "name": "name", - "description": "Name of Repository to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "followRenames", - "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryDiscussionComments","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId", - "description": "Filter discussion comments to only those in a specific repository.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "onlyAnswers", - "description": "Filter discussion comments to only those that were marked as the answer", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionCommentConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryDiscussions","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for discussions returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DiscussionOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - }, - { - "name": "repositoryId", - "description": "Filter discussions to only those in a specific repository.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "answered", - "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "null" - }, - { - "name": "states", - "description": "A list of states to filter the discussions by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DiscussionState", - "ofType": None - } - } - }, - "defaultValue": "[]" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DiscussionConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "savedReplies","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "The field to order saved replies by.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SavedReplyOrder", - "ofType": None - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "OBJECT", - "name": "SavedReplyConnection", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "socialAccounts","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SocialAccountConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsoring","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the users and organizations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorOrder", - "ofType": None - }, - "defaultValue": "{field: RELEVANCE, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsors","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "tierId", - "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsors returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorOrder", - "ofType": None - }, - "defaultValue": "{field: RELEVANCE, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsActivities","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "period", - "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", - "type": { - "kind": "ENUM", - "name": "SponsorsActivityPeriod", - "ofType": None - }, - "defaultValue": "MONTH" - }, - { - "name": "since", - "description": "Filter activities to those that occurred on or after this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "until", - "description": "Filter activities to those that occurred before this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for activity returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorsActivityOrder", - "ofType": None - }, - "defaultValue": "{field: TIMESTAMP, direction: DESC}" - }, - { - "name": "actions", - "description": "Filter activities to only the specified actions.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "ofType": None - } - } - }, - "defaultValue": "[]" - }, - { - "name": "includeAsSponsor", - "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "includePrivate", - "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsActivityConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorsListing","args": [], - "type": { - "kind": "OBJECT", - "name": "SponsorsListing", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipForViewerAsSponsor","args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipForViewerAsSponsorable","args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "OBJECT", - "name": "Sponsorship", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipNewsletters","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorship updates returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipNewsletterOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipNewsletterConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipsAsMaintainer","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "includePrivate", - "description": "Whether or not to include private sponsorships in the result set", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sponsorshipsAsSponsor","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "maintainerLogins", - "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "true" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "starredRepositories","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "ownedByViewer", - "description": "Filters starred repositories to only return repositories owned by the viewer.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "StarOrder", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StarredRepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "status","args": [], - "type": { - "kind": "OBJECT", - "name": "UserStatus", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "suggestedListNames","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserListSuggestion", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "topRepositories","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "since", - "description": "How far back in time to fetch contributed repositories", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalSponsorshipAmountAsSponsorInCents","args": [ - { - "name": "since", - "description": "Filter payments to those that occurred on or after this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "until", - "description": "Filter payments to those that occurred before this time.", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "sponsorableLogins", - "description": "Filter payments to those made to the users or organizations with the specified usernames.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": "[]" - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "twitterUsername","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanChangePinnedItems","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanCreateProjects","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanFollow","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanSponsor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerIsFollowing","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerIsSponsoring","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "watching","args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": { - "kind": "ENUM", - "name": "RepositoryVisibility", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "affiliations", - "description": "Affiliation options for repositories returned from the connection. If none specified, the results will include repositories for which the current viewer is an owner or collaborator, or member.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "ofType": None - } - }, - "defaultValue": "[OWNER, COLLABORATOR]" - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "websiteUrl","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "PackageOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProfileOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Owner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Recent", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryDiscussionAuthor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryDiscussionCommentAuthor", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "Sponsorable", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "UserBlockDuration", - "description": "The possible durations that a user can be blocked for.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ONE_DAY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "THREE_DAYS","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ONE_WEEK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ONE_MONTH","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "PERMANENT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserBlockedEvent", - "description": "Represents a 'user_blocked' event on a given user.", - "fields": [ - { - "name": "actor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "blockDuration","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "UserBlockDuration", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subject","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserConnection", - "description": "A list of users.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserContentEdit", - "description": "An edit on user content", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletedAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deletedBy","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "diff","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "editor","args": [], - "type": { - "kind": "INTERFACE", - "name": "Actor", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "description": "A list of edits to content.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserContentEditEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserContentEdit", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserContentEditEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "UserContentEdit", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserEdge", - "description": "Represents a user.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserEmailMetadata", - "description": "Email attributes from External Identity", - "fields": [ - { - "name": "primary","args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "type","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "value","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserList", - "description": "A user-curated list of repositories", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isPrivate","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "items","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserListItemsConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "lastAddedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "slug","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserListConnection", - "description": "The connection type for UserList.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserListEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserList", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserListEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "UserList", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "UserListItems", - "description": "Types that can be added to a user list.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Repository", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "UserListItemsConnection", - "description": "The connection type for UserListItems.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserListItemsEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "UNION", - "name": "UserListItems", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserListItemsEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "UNION", - "name": "UserListItems", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserListSuggestion", - "description": "Represents a suggested user list.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserStatus", - "description": "The user's description of what they're currently doing.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "emoji","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "emojiHTML","args": [], - "type": { - "kind": "SCALAR", - "name": "HTML", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "expiresAt","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "indicatesLimitedAvailability","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "message","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "organization","args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "user","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserStatusConnection", - "description": "The connection type for UserStatus.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserStatusEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "UserStatus", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "UserStatusEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "UserStatus", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "UserStatusOrder", - "description": "Ordering options for user status connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "UserStatusOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "UserStatusOrderField", - "description": "Properties by which user status connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "UPDATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "VerifiableDomain", - "description": "A domain that can be verified or approved for an organization or an enterprise.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "dnsHostName","args": [], - "type": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "domain","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasFoundHostName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "hasFoundVerificationToken","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isApproved","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isRequiredForPolicyEnforcement","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isVerified","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "owner","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "VerifiableDomainOwner", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "punycodeEncodedDomain","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "tokenExpirationTime","args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "verificationToken","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "VerifiableDomainConnection", - "description": "The connection type for VerifiableDomain.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "VerifiableDomainEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "VerifiableDomain", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "VerifiableDomainEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "VerifiableDomain", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "VerifiableDomainOrder", - "description": "Ordering options for verifiable domain connections.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "VerifiableDomainOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "VerifiableDomainOrderField", - "description": "Properties by which verifiable domain connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "DOMAIN","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "UNION", - "name": "VerifiableDomainOwner", - "description": "Types that can own a verifiable domain.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Enterprise", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "Organization", - "ofType": None - } - ] - }, - { - "kind": "INPUT_OBJECT", - "name": "VerifyVerifiableDomainInput", - "description": "Autogenerated input type of VerifyVerifiableDomain", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "id","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "VerifyVerifiableDomainPayload", - "description": "Autogenerated return type of VerifyVerifiableDomain", - "fields": [ - { - "name": "clientMutationId","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "domain","args": [], - "type": { - "kind": "OBJECT", - "name": "VerifiableDomain", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "ViewerHovercardContext", - "description": "A hovercard context with a message describing how the viewer is related.", - "fields": [ - { - "name": "message","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "octicon","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewer","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "HovercardContext", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INTERFACE", - "name": "Votable", - "description": "A subject that may be upvoted.", - "fields": [ - { - "name": "upvoteCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanUpvote","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerHasUpvoted","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Discussion", - "ofType": None - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "ofType": None - } - ] - }, - { - "kind": "OBJECT", - "name": "Workflow", - "description": "A workflow contains meta information about an Actions workflow file.", - "fields": [ - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "runs","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "orderBy", - "description": "Ordering options for the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowRunOrder", - "ofType": None - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowRunConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "state","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "WorkflowState", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "WorkflowFileReference", - "description": "A workflow that must run for this rule to pass", - "fields": [ - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ref","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryId","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "sha","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowFileReferenceInput", - "description": "A workflow that must run for this rule to pass", - "fields": None, - "inputFields": [ - { - "name": "path","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "ref","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "repositoryId","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "sha","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "WorkflowRun", - "description": "A workflow run.", - "fields": [ - { - "name": "checkSuite","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CheckSuite", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "createdAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "databaseId","args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deploymentReviews","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentReviewConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "event","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "file","args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowRunFile", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pendingDeploymentRequests","args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - }, - "defaultValue": None - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentRequestConnection", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "runNumber","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "updatedAt","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "workflow","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "WorkflowRunConnection", - "description": "The connection type for WorkflowRun.", - "fields": [ - { - "name": "edges","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowRunEdge", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "nodes","args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowRun", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "pageInfo","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "totalCount","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "WorkflowRunEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "node","args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowRun", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "WorkflowRunFile", - "description": "An executed workflow file for a workflow run.", - "fields": [ - { - "name": "id","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "path","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryFileUrl","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "repositoryName","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "resourcePath","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "run","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowRun", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "url","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "URI", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanPushRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "viewerCanReadRepository","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": None - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "ofType": None - } - ], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowRunOrder", - "description": "Ways in which lists of workflow runs can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "WorkflowRunOrderField", - "ofType": None - } - }, - "defaultValue": None - }, - { - "name": "direction","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": None - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "WorkflowRunOrderField", - "description": "Properties by which workflow run connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "CREATED_AT","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "WorkflowState", - "description": "The possible states for a workflow.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "ACTIVE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DELETED","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED_FORK","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED_INACTIVITY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "DISABLED_MANUALLY","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "WorkflowsParameters", - "description": "Require all changes made to a targeted branch to pass the specified workflows before they can be merged.", - "fields": [ - { - "name": "workflows","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "WorkflowFileReference", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowsParametersInput", - "description": "Require all changes made to a targeted branch to pass the specified workflows before they can be merged.", - "fields": None, - "inputFields": [ - { - "name": "workflows","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFileReferenceInput", - "ofType": None - } - } - } - }, - "defaultValue": None - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "SCALAR", - "name": "X509Certificate", - "description": "A valid x509 certificate string", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "__Directive", - "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.", - "fields": [ - { - "name": "args", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isRepeatable", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "locations", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "onField", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "Use `locations`." - }, - { - "name": "onFragment", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "Use `locations`." - }, - { - "name": "onOperation", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": True, - "deprecationReason": "Use `locations`." - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "QUERY","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "MUTATION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SUBSCRIPTION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FIELD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FRAGMENT_DEFINITION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FRAGMENT_SPREAD","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INLINE_FRAGMENT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SCHEMA","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "SCALAR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OBJECT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "FIELD_DEFINITION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ARGUMENT_DEFINITION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INTERFACE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ENUM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ENUM_VALUE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INPUT_OBJECT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INPUT_FIELD_DEFINITION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "VARIABLE_DEFINITION","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "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.", - "fields": [ - { - "name": "deprecationReason", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDeprecated", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "__Field", - "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.", - "fields": [ - { - "name": "args", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deprecationReason", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDeprecated", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "type", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "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.", - "fields": [ - { - "name": "defaultValue","args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "deprecationReason", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "description", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "isDeprecated", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "type", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "__Schema", - "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.", - "fields": [ - { - "name": "description", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "directives","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "mutationType","args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "queryType","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "subscriptionType","args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "types","args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - } - } - } - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "OBJECT", - "name": "__Type", - "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 and description, 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.", - "fields": [ - { - "name": "description", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "enumValues", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "fields", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "inputFields", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "interfaces", - "description": None, - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "kind", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": None - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ofType", - "description": None, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "possibleTypes", - "description": None, - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": None - } - } - }, - "isDeprecated": False, - "deprecationReason": None - }, - { - "name": "specifiedByUrl", - "description": None, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - "isDeprecated": False, - "deprecationReason": None - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "SCALAR","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "OBJECT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INTERFACE","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "UNION","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "ENUM","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "INPUT_OBJECT","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "LIST","isDeprecated": False, - "deprecationReason": None - }, - { - "name": "NON_NULL","isDeprecated": False, - "deprecationReason": None - } - ], - "possibleTypes": None - } - ], - "directives": [ - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if","type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": None - } - }, - "defaultValue": None - } - ] - }, - { - "name": "deprecated", - "locations": [ - "FIELD_DEFINITION", - "ENUM_VALUE", - "ARGUMENT_DEFINITION", - "INPUT_FIELD_DEFINITION" - ], - "args": [ - { - "name": "reason","type": { - "kind": "SCALAR", - "name": "String", - "ofType": None - }, - } - ] - }, - { - "name": "requiredCapabilities", - "description": None, - "locations": [ - "OBJECT", - "SCALAR", - "ARGUMENT_DEFINITION", - "INTERFACE", - "INPUT_OBJECT", - "FIELD_DEFINITION", - "ENUM", - "ENUM_VALUE", - "UNION", - "INPUT_FIELD_DEFINITION" - ], - "args": [ - { - "name": "requiredCapabilities", - "description": None, - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": None - } - } - }, - "defaultValue": None - } - ] - } - ] - } - } -} diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py b/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py index fbcd550c..f7cd3452 100644 --- a/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py +++ b/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py @@ -1,12 +1,14 @@ import unittest import responses -from .introspection_json import introspection +from data.introspection_json import introspection from update_github_org_users.util.github import _get_client, _build_queries from graphql import print_ast + def noop(): pass + class TestQueryUsersForOrg(unittest.TestCase): @responses.activate() def test_query_single_user_for_org(self): @@ -17,27 +19,14 @@ def test_query_single_user_for_org(self): } } }""" - responses.add( - responses.POST, - "https://api.github.com/graphql", - json=introspection, - status=200 - ) + responses.add(responses.POST, "https://api.github.com/graphql", json=introspection, status=200) client = _get_client("") with client as session: org = "artemis" - github_users = [{ - "artemis_user_id": "1234", - "username": "test-user", - "query_name": "q1" - }] + github_users = [{"artemis_user_id": "1234", "username": "test-user", "query_name": "q1"}] query, variables = _build_queries(client, org, github_users) self.assertEqual(print_ast(query), expected_query) - self.assertEqual(variables, { - "org": "artemis", - "q1": "test-user" - }) - + self.assertEqual(variables, {"org": "artemis", "q1": "test-user"}) @responses.activate() def test_query_users_for_org(self): @@ -58,37 +47,15 @@ def test_query_users_for_org(self): } } }""" - expected_vars = { - "q1": "test-user1", - "q2": "test-user2", - "q3": "test-user3", - "org": "artemis" - } - responses.add( - responses.POST, - "https://api.github.com/graphql", - json=introspection, - status=200 - ) + expected_vars = {"q1": "test-user1", "q2": "test-user2", "q3": "test-user3", "org": "artemis"} + responses.add(responses.POST, "https://api.github.com/graphql", json=introspection, status=200) client = _get_client("") with client as session: org = "artemis" github_users = [ - { - "artemis_user_id": "1234", - "username": "test-user1", - "query_name": "q1" - }, - { - "artemis_user_id": "12345", - "username": "test-user2", - "query_name": "q2" - }, - { - "artemis_user_id": "123456", - "username": "test-user3", - "query_name": "q3" - } + {"artemis_user_id": "1234", "username": "test-user1", "query_name": "q1"}, + {"artemis_user_id": "12345", "username": "test-user2", "query_name": "q2"}, + {"artemis_user_id": "123456", "username": "test-user3", "query_name": "q3"}, ] query, variables = _build_queries(client, org, github_users) self.assertEqual(print_ast(query), expected_query) diff --git a/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py b/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py index c5f65067..c2ec87e5 100644 --- a/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py +++ b/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py @@ -26,6 +26,7 @@ def get_token(org: str, github_secret: str) -> str: key = _get_api_key(github_secret) return f"bearer {key}" + def query_users_for_org(authorization: str, github_users: list, org: str) -> Union[bool, dict]: """ Given a list of GitHub users, determine if each is/is not part of a given org @@ -52,17 +53,16 @@ def _build_queries(client, org, github_users): ds = DSLSchema(client.schema) var_defs = DSLVariableDefinitions() for github_user in github_users: - variables.update({github_user["query_name"]:github_user["username"]}) + variables.update({github_user["query_name"]: github_user["username"]}) # This is kind of hacky but it won't let us dynamically set vars otherwise. var_defs.variables[github_user["query_name"]] = DSLVariable(github_user["query_name"]) - user_queries.append(( - ds.Query.user - .args(login=var_defs.variables[github_user["query_name"]]) - .alias(github_user["query_name"]) - .select(ds.User.organization.args(login=var_defs.org) - .select(ds.Organization.login) + user_queries.append( + ( + ds.Query.user.args(login=var_defs.variables[github_user["query_name"]]) + .alias(github_user["query_name"]) + .select(ds.User.organization.args(login=var_defs.org).select(ds.Organization.login)) ) - )) + ) operation = DSLQuery(*user_queries) operation.variable_definitions = var_defs From 76c697622fc7af8c344d8e34c2649bead6c05573 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 9 May 2024 14:59:50 -0400 Subject: [PATCH 08/37] fixed tests, moved all queries to use vars --- backend/Pipfile | 3 +- backend/Pipfile.lock | 734 +- .../api/repo/repo/github_util/github_utils.py | 110 +- .../repo/repo/gitlab_util/process_gitlab.py | 10 +- .../repo/gitlab_util/process_gitlab_utils.py | 71 +- backend/lambdas/api/repo/repo/util/const.py | 30 +- .../api/repo/tests/test_github_utils.py | 135 +- .../repo/tests/test_process_gitlab_utils.py | 73 +- .../tests/data/introspection_json.py | 102873 --------------- .../tests/test_query_users_for_org.py | 90 +- .../update_github_org_users/util/github.py | 54 +- 11 files changed, 694 insertions(+), 103489 deletions(-) delete mode 100644 backend/lambdas/scheduled/update_github_org_users/tests/data/introspection_json.py diff --git a/backend/Pipfile b/backend/Pipfile index eda68fd6..ac354c16 100644 --- a/backend/Pipfile +++ b/backend/Pipfile @@ -18,7 +18,7 @@ pyjwt = "*" cryptography = "*" packaging = "==21.3" urllib3 = "<2" -gql = {extras = ["requests"], version = "*"} +graphql-query = "*" [dev-packages] pytest = "==6.0.1" @@ -40,7 +40,6 @@ python-dotenv = "*" checkov = "==2.0.1065" aiohttp = "*" gitpython = "*" -responses = "*" [pipenv] allow_prereleases = true diff --git a/backend/Pipfile.lock b/backend/Pipfile.lock index 4abcaf3c..2524c71f 100644 --- a/backend/Pipfile.lock +++ b/backend/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "898c86fce40ebe045bc41f7c9999c757d734feaddf97c7de75448a9cbc25279c" + "sha256": "818ddbbcfbe19bcc7ff23615a5caf0ce0bddbb304faf0dd3f9efcace39b97cfe" }, "pipfile-spec": 6, "requires": { @@ -16,13 +16,13 @@ ] }, "default": { - "anyio": { + "annotated-types": { "hashes": [ - "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", - "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6" + "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43", + "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d" ], "markers": "python_version >= '3.8'", - "version": "==4.3.0" + "version": "==0.6.0" }, "asgiref": { "hashes": [ @@ -34,37 +34,29 @@ }, "awscli": { "hashes": [ - "sha256:8d2311c491c42ca7ef5fa1dd6f623e2749372da76f99355612f0812bfa8bae47", - "sha256:ffb9e2169c96fe4cf84b45b0743512da821011714b42cf51b0473d6d1c67ab2e" + "sha256:3382b3b90facacf7e4f393f941e41f54ca2b48a5a198d85d5f8018d007910d34", + "sha256:40c9a2edd9df7f34923b6f82f90a38d3a1fe944e1c7da546b29519a566937ee9" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.32.94" - }, - "backoff": { - "hashes": [ - "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba", - "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8" - ], - "markers": "python_version >= '3.7' and python_version < '4.0'", - "version": "==2.2.1" + "version": "==1.32.101" }, "boto3": { "hashes": [ - "sha256:22f65b3c9b7a419f8f39c2dddc421e14fab8cbb3bd8a9d467e874237d39f59b1", - "sha256:bbb87d641c73462e53b1777083b55c8f13921618ad08757478a8122985c56c13" + "sha256:1d854b5880e185db546b4c759fcb664bf3326275064d2b44229cc217e8be9d7e", + "sha256:79b93f3370ea96ce838042bc2eac0c996aee204b01e7e6452eb77abcbe697d6a" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.34.94" + "version": "==1.34.101" }, "botocore": { "hashes": [ - "sha256:99b11be9a28f9051af4c96fa121e9c3f22a86d499abd773c9e868b2a38961bae", - "sha256:f00a79002e0cb9d6895ecd0919c506402850177d7b6c4d2634fa2da362d95bcb" + "sha256:01f3802d25558dd7945d83884bf6885e2f84e1ff27f90b5f09614966fe18c18f", + "sha256:f145e8b4b8fc9968f5eb695bdc2fcc8e675df7fbc3c56102dc1f5471be6baf35" ], "markers": "python_version >= '3.8'", - "version": "==1.34.94" + "version": "==1.34.101" }, "certifi": { "hashes": [ @@ -238,42 +230,42 @@ }, "cryptography": { "hashes": [ - "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee", - "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576", - "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d", - "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30", - "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413", - "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb", - "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da", - "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4", - "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd", - "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc", - "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8", - "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1", - "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc", - "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e", - "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8", - "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940", - "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400", - "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7", - "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16", - "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278", - "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74", - "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec", - "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1", - "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2", - "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c", - "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922", - "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a", - "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6", - "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1", - "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e", - "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac", - "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7" + "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", + "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", + "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", + "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", + "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", + "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", + "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", + "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", + "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", + "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", + "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", + "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", + "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", + "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", + "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", + "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", + "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", + "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", + "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", + "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", + "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", + "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", + "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", + "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", + "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", + "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", + "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", + "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", + "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", + "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", + "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", + "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==42.0.5" + "version": "==42.0.7" }, "cwe": { "hashes": [ @@ -308,31 +300,14 @@ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.16" }, - "exceptiongroup": { + "graphql-query": { "hashes": [ - "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", - "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" - ], - "markers": "python_version < '3.11'", - "version": "==1.2.1" - }, - "gql": { - "extras": [ - "requests" + "sha256:5a2e771c9a78817fa2b9a7186f5fb7f7d6b02b5589bd4e80e5175cf4d4a4882e", + "sha256:d54e8d9edad1a9b769e3fd6711753aa0cc8ec0609737a2c429051c37ed488c28" ], - "hashes": [ - "sha256:c681d2273cc8164c0d6557c2d6fd4df190a009706a2044cd640be6a24526318e", - "sha256:f1a4fc06186f25e5b4b5abaf3af359bc7ac65b38bcaa705b6507cd29dec2ecbf" - ], - "version": "==3.6.0b2" - }, - "graphql-core": { - "hashes": [ - "sha256:9d72ed2c4ac93682fe55a0a2939548c1b3d23bd7e2ad76f7f8faef4d99d606ec", - "sha256:f3a8ab44a436651608b8e0335800b175c4bb3a7bf0217bbc97babf6d9517218a" - ], - "markers": "python_version >= '3.7' and python_version < '4.0'", - "version": "==3.3.0a5" + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==1.3.2" }, "idna": { "hashes": [ @@ -342,6 +317,14 @@ "markers": "python_version >= '3.5'", "version": "==3.7" }, + "jinja2": { + "hashes": [ + "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", + "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d" + ], + "markers": "python_version >= '3.7'", + "version": "==3.1.4" + }, "jmespath": { "hashes": [ "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", @@ -350,101 +333,71 @@ "markers": "python_version >= '3.7'", "version": "==1.0.1" }, - "multidict": { + "markupsafe": { "hashes": [ - "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", - "sha256:0275e35209c27a3f7951e1ce7aaf93ce0d163b28948444bec61dd7badc6d3f8c", - "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", - "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", - "sha256:09a892e4a9fb47331da06948690ae38eaa2426de97b4ccbfafbdcbe5c8f37ff8", - "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", - "sha256:107c0cdefe028703fb5dafe640a409cb146d44a6ae201e55b35a4af8e95457dd", - "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", - "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", - "sha256:19fe01cea168585ba0f678cad6f58133db2aa14eccaf22f88e4a6dccadfad8b3", - "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", - "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", - "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", - "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", - "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", - "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", - "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", - "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", - "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", - "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", - "sha256:37b15024f864916b4951adb95d3a80c9431299080341ab9544ed148091b53f50", - "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", - "sha256:3d25f19500588cbc47dc19081d78131c32637c25804df8414463ec908631e453", - "sha256:403c0911cd5d5791605808b942c88a8155c2592e05332d2bf78f18697a5fa15e", - "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", - "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", - "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", - "sha256:4a6a4f196f08c58c59e0b8ef8ec441d12aee4125a7d4f4fef000ccb22f8d7241", - "sha256:4cc0ef8b962ac7a5e62b9e826bd0cd5040e7d401bc45a6835910ed699037a461", - "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", - "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", - "sha256:55205d03e8a598cfc688c71ca8ea5f66447164efff8869517f175ea632c7cb7b", - "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", - "sha256:5cb241881eefd96b46f89b1a056187ea8e9ba14ab88ba632e68d7a2ecb7aadf7", - "sha256:60d698e8179a42ec85172d12f50b1668254628425a6bd611aba022257cac1386", - "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", - "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", - "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", - "sha256:69db76c09796b313331bb7048229e3bee7928eb62bab5e071e9f7fcc4879caee", - "sha256:6bf7a982604375a8d49b6cc1b781c1747f243d91b81035a9b43a2126c04766f5", - "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", - "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", - "sha256:76f067f5121dcecf0d63a67f29080b26c43c71a98b10c701b0677e4a065fbd54", - "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", - "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", - "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", - "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", - "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", - "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", - "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", - "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", - "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", - "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", - "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", - "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", - "sha256:a3145cb08d8625b2d3fee1b2d596a8766352979c9bffe5d7833e0503d0f0b5e5", - "sha256:aeaf541ddbad8311a87dd695ed9642401131ea39ad7bc8cf3ef3967fd093b626", - "sha256:b55358304d7a73d7bdf5de62494aaf70bd33015831ffd98bc498b433dfe5b10c", - "sha256:b82cc8ace10ab5bd93235dfaab2021c70637005e1ac787031f4d1da63d493c1d", - "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", - "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", - "sha256:c9bf56195c6bbd293340ea82eafd0071cb3d450c703d2c93afb89f93b8386ccc", - "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", - "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", - "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", - "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", - "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", - "sha256:d65f25da8e248202bd47445cec78e0025c0fe7582b23ec69c3b27a640dd7a8e3", - "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", - "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", - "sha256:d946b0a9eb8aaa590df1fe082cee553ceab173e6cb5b03239716338629c50c7a", - "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", - "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", - "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", - "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", - "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", - "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", - "sha256:e4972624066095e52b569e02b5ca97dbd7a7ddd4294bf4e7247d52635630dd83", - "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", - "sha256:e8e94e6912639a02ce173341ff62cc1201232ab86b8a8fcc05572741a5dc7d93", - "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", - "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", - "sha256:eca2e9d0cc5a889850e9bbd68e98314ada174ff6ccd1129500103df7a94a7a44", - "sha256:edd08e6f2f1a390bf137080507e44ccc086353c8e98c657e666c017718561b89", - "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", - "sha256:f2a1dee728b52b33eebff5072817176c172050d44d67befd681609b4746e1c2e", - "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", - "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", - "sha256:fce28b3c8a81b6b36dfac9feb1de115bab619b3c13905b419ec71d03a3fc1423", - "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef" + "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf", + "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff", + "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f", + "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3", + "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532", + "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f", + "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617", + "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df", + "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4", + "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906", + "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f", + "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4", + "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8", + "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371", + "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2", + "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465", + "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52", + "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6", + "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169", + "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad", + "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2", + "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0", + "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029", + "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f", + "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a", + "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced", + "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5", + "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c", + "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf", + "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9", + "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb", + "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad", + "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3", + "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1", + "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46", + "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc", + "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a", + "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee", + "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900", + "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5", + "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea", + "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f", + "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5", + "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e", + "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a", + "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f", + "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50", + "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a", + "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b", + "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4", + "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff", + "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2", + "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46", + "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b", + "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf", + "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5", + "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5", + "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab", + "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd", + "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68" ], "markers": "python_version >= '3.7'", - "version": "==6.0.5" + "version": "==2.1.5" }, "packaging": { "hashes": [ @@ -471,6 +424,99 @@ "markers": "python_version >= '3.8'", "version": "==2.22" }, + "pydantic": { + "hashes": [ + "sha256:e029badca45266732a9a79898a15ae2e8b14840b1eabbb25844be28f0b33f3d5", + "sha256:e9dbb5eada8abe4d9ae5f46b9939aead650cd2b68f249bb3a8139dbe125803cc" + ], + "markers": "python_version >= '3.8'", + "version": "==2.7.1" + }, + "pydantic-core": { + "hashes": [ + "sha256:0098300eebb1c837271d3d1a2cd2911e7c11b396eac9661655ee524a7f10587b", + "sha256:042473b6280246b1dbf530559246f6842b56119c2926d1e52b631bdc46075f2a", + "sha256:05b7133a6e6aeb8df37d6f413f7705a37ab4031597f64ab56384c94d98fa0e90", + "sha256:0680b1f1f11fda801397de52c36ce38ef1c1dc841a0927a94f226dea29c3ae3d", + "sha256:0d69b4c2f6bb3e130dba60d34c0845ba31b69babdd3f78f7c0c8fae5021a253e", + "sha256:1404c69d6a676245199767ba4f633cce5f4ad4181f9d0ccb0577e1f66cf4c46d", + "sha256:182245ff6b0039e82b6bb585ed55a64d7c81c560715d1bad0cbad6dfa07b4027", + "sha256:1a388a77e629b9ec814c1b1e6b3b595fe521d2cdc625fcca26fbc2d44c816804", + "sha256:1d90c3265ae107f91a4f279f4d6f6f1d4907ac76c6868b27dc7fb33688cfb347", + "sha256:20aca1e2298c56ececfd8ed159ae4dde2df0781988c97ef77d5c16ff4bd5b400", + "sha256:219da3f096d50a157f33645a1cf31c0ad1fe829a92181dd1311022f986e5fbe3", + "sha256:22057013c8c1e272eb8d0eebc796701167d8377441ec894a8fed1af64a0bf399", + "sha256:223ee893d77a310a0391dca6df00f70bbc2f36a71a895cecd9a0e762dc37b349", + "sha256:224c421235f6102e8737032483f43c1a8cfb1d2f45740c44166219599358c2cd", + "sha256:2334ce8c673ee93a1d6a65bd90327588387ba073c17e61bf19b4fd97d688d63c", + "sha256:269322dcc3d8bdb69f054681edff86276b2ff972447863cf34c8b860f5188e2e", + "sha256:2728b01246a3bba6de144f9e3115b532ee44bd6cf39795194fb75491824a1413", + "sha256:2b8ed04b3582771764538f7ee7001b02e1170223cf9b75dff0bc698fadb00cf3", + "sha256:2e29d20810dfc3043ee13ac7d9e25105799817683348823f305ab3f349b9386e", + "sha256:36789b70d613fbac0a25bb07ab3d9dba4d2e38af609c020cf4d888d165ee0bf3", + "sha256:390193c770399861d8df9670fb0d1874f330c79caaca4642332df7c682bf6b91", + "sha256:3a6515ebc6e69d85502b4951d89131ca4e036078ea35533bb76327f8424531ce", + "sha256:3f9a801e7c8f1ef8718da265bba008fa121243dfe37c1cea17840b0944dfd72c", + "sha256:43f0f463cf89ace478de71a318b1b4f05ebc456a9b9300d027b4b57c1a2064fb", + "sha256:4456f2dca97c425231d7315737d45239b2b51a50dc2b6f0c2bb181fce6207664", + "sha256:470b94480bb5ee929f5acba6995251ada5e059a5ef3e0dfc63cca287283ebfa6", + "sha256:4774f3184d2ef3e14e8693194f661dea5a4d6ca4e3dc8e39786d33a94865cefd", + "sha256:4b4356d3538c3649337df4074e81b85f0616b79731fe22dd11b99499b2ebbdf3", + "sha256:553ef617b6836fc7e4df130bb851e32fe357ce36336d897fd6646d6058d980af", + "sha256:6132dd3bd52838acddca05a72aafb6eab6536aa145e923bb50f45e78b7251043", + "sha256:6a46e22a707e7ad4484ac9ee9f290f9d501df45954184e23fc29408dfad61350", + "sha256:6e5c584d357c4e2baf0ff7baf44f4994be121e16a2c88918a5817331fc7599d7", + "sha256:75250dbc5290e3f1a0f4618db35e51a165186f9034eff158f3d490b3fed9f8a0", + "sha256:75f7e9488238e920ab6204399ded280dc4c307d034f3924cd7f90a38b1829563", + "sha256:78363590ef93d5d226ba21a90a03ea89a20738ee5b7da83d771d283fd8a56761", + "sha256:7ca4ae5a27ad7a4ee5170aebce1574b375de390bc01284f87b18d43a3984df72", + "sha256:800d60565aec896f25bc3cfa56d2277d52d5182af08162f7954f938c06dc4ee3", + "sha256:82d5d4d78e4448683cb467897fe24e2b74bb7b973a541ea1dcfec1d3cbce39fb", + "sha256:852e966fbd035a6468fc0a3496589b45e2208ec7ca95c26470a54daed82a0788", + "sha256:868649da93e5a3d5eacc2b5b3b9235c98ccdbfd443832f31e075f54419e1b96b", + "sha256:886eec03591b7cf058467a70a87733b35f44707bd86cf64a615584fd72488b7c", + "sha256:8b172601454f2d7701121bbec3425dd71efcb787a027edf49724c9cefc14c038", + "sha256:95b9d5e72481d3780ba3442eac863eae92ae43a5f3adb5b4d0a1de89d42bb250", + "sha256:98758d627ff397e752bc339272c14c98199c613f922d4a384ddc07526c86a2ec", + "sha256:997abc4df705d1295a42f95b4eec4950a37ad8ae46d913caeee117b6b198811c", + "sha256:9b5155ff768083cb1d62f3e143b49a8a3432e6789a3abee8acd005c3c7af1c74", + "sha256:9e08e867b306f525802df7cd16c44ff5ebbe747ff0ca6cf3fde7f36c05a59a81", + "sha256:9fdad8e35f278b2c3eb77cbdc5c0a49dada440657bf738d6905ce106dc1de439", + "sha256:a1874c6dd4113308bd0eb568418e6114b252afe44319ead2b4081e9b9521fe75", + "sha256:a8309f67285bdfe65c372ea3722b7a5642680f3dba538566340a9d36e920b5f0", + "sha256:ae0a8a797a5e56c053610fa7be147993fe50960fa43609ff2a9552b0e07013e8", + "sha256:b14d82cdb934e99dda6d9d60dc84a24379820176cc4a0d123f88df319ae9c150", + "sha256:b1bd7e47b1558ea872bd16c8502c414f9e90dcf12f1395129d7bb42a09a95438", + "sha256:b3ef08e20ec49e02d5c6717a91bb5af9b20f1805583cb0adfe9ba2c6b505b5ae", + "sha256:b89ed9eb7d616ef5714e5590e6cf7f23b02d0d539767d33561e3675d6f9e3857", + "sha256:c4fcf5cd9c4b655ad666ca332b9a081112cd7a58a8b5a6ca7a3104bc950f2038", + "sha256:c6fdc8627910eed0c01aed6a390a252fe3ea6d472ee70fdde56273f198938374", + "sha256:c9bd70772c720142be1020eac55f8143a34ec9f82d75a8e7a07852023e46617f", + "sha256:ca7b0c1f1c983e064caa85f3792dd2fe3526b3505378874afa84baf662e12241", + "sha256:cbca948f2d14b09d20268cda7b0367723d79063f26c4ffc523af9042cad95592", + "sha256:cc1cfd88a64e012b74e94cd00bbe0f9c6df57049c97f02bb07d39e9c852e19a4", + "sha256:ccdd111c03bfd3666bd2472b674c6899550e09e9f298954cfc896ab92b5b0e6d", + "sha256:cfeecd1ac6cc1fb2692c3d5110781c965aabd4ec5d32799773ca7b1456ac636b", + "sha256:d4d938ec0adf5167cb335acb25a4ee69a8107e4984f8fbd2e897021d9e4ca21b", + "sha256:d7d904828195733c183d20a54230c0df0eb46ec746ea1a666730787353e87182", + "sha256:d91cb5ea8b11607cc757675051f61b3d93f15eca3cefb3e6c704a5d6e8440f4e", + "sha256:d9319e499827271b09b4e411905b24a426b8fb69464dfa1696258f53a3334641", + "sha256:e0e8b1be28239fc64a88a8189d1df7fad8be8c1ae47fcc33e43d4be15f99cc70", + "sha256:e18609ceaa6eed63753037fc06ebb16041d17d28199ae5aba0052c51449650a9", + "sha256:e1b395e58b10b73b07b7cf740d728dd4ff9365ac46c18751bf8b3d8cca8f625a", + "sha256:e23ec367a948b6d812301afc1b13f8094ab7b2c280af66ef450efc357d2ae543", + "sha256:e25add29b8f3b233ae90ccef2d902d0ae0432eb0d45370fe315d1a5cf231004b", + "sha256:e6dac87ddb34aaec85f873d737e9d06a3555a1cc1a8e0c44b7f8d5daeb89d86f", + "sha256:ef26c9e94a8c04a1b2924149a9cb081836913818e55681722d7f29af88fe7b38", + "sha256:eff2de745698eb46eeb51193a9f41d67d834d50e424aef27df2fcdee1b153845", + "sha256:f0a21cbaa69900cbe1a2e7cad2aa74ac3cf21b10c3efb0fa0b80305274c0e8a2", + "sha256:f459a5ce8434614dfd39bbebf1041952ae01da6bed9855008cb33b875cb024c0", + "sha256:f93a8a2e3938ff656a7c1bc57193b1319960ac015b6e87d76c76bf14fe0244b4", + "sha256:fb2bd7be70c0fe4dfd32c951bc813d9fe6ebcbfdd15a07527796c8204bd36242" + ], + "markers": "python_version >= '3.8'", + "version": "==2.18.2" + }, "pygithub": { "hashes": [ "sha256:0148d7347a1cdeed99af905077010aef81a4dad988b0ba51d4108bf66b443f7e", @@ -597,13 +643,6 @@ "markers": "python_version >= '3.7'", "version": "==2.31.0" }, - "requests-toolbelt": { - "hashes": [ - "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", - "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06" - ], - "version": "==1.0.0" - }, "rsa": { "hashes": [ "sha256:78f9a9bf4e7be0c5ded4583326e7461e3a3c5aae24073648b4bdfa797d78c9d2", @@ -733,14 +772,6 @@ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, - "sniffio": { - "hashes": [ - "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", - "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc" - ], - "markers": "python_version >= '3.7'", - "version": "==1.3.1" - }, "sqlparse": { "hashes": [ "sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93", @@ -841,102 +872,6 @@ ], "markers": "python_version >= '3.6'", "version": "==1.16.0" - }, - "yarl": { - "hashes": [ - "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", - "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce", - "sha256:07574b007ee20e5c375a8fe4a0789fad26db905f9813be0f9fef5a68080de559", - "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", - "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", - "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", - "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4", - "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c", - "sha256:206a55215e6d05dbc6c98ce598a59e6fbd0c493e2de4ea6cc2f4934d5a18d130", - "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136", - "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e", - "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec", - "sha256:2b134fd795e2322b7684155b7855cc99409d10b2e408056db2b93b51a52accc7", - "sha256:2d47552b6e52c3319fede1b60b3de120fe83bde9b7bddad11a69fb0af7db32f1", - "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455", - "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099", - "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", - "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", - "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", - "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98", - "sha256:4aa9741085f635934f3a2583e16fcf62ba835719a8b2b28fb2917bb0537c1dfa", - "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", - "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525", - "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c", - "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9", - "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c", - "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8", - "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b", - "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", - "sha256:5a2e2433eb9344a163aced6a5f6c9222c0786e5a9e9cac2c89f0b28433f56e23", - "sha256:5aef935237d60a51a62b86249839b51345f47564208c6ee615ed2a40878dccdd", - "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27", - "sha256:63b20738b5aac74e239622d2fe30df4fca4942a86e31bf47a81a0e94c14df94f", - "sha256:686a0c2f85f83463272ddffd4deb5e591c98aac1897d65e92319f729c320eece", - "sha256:6a962e04b8f91f8c4e5917e518d17958e3bdee71fd1d8b88cdce74dd0ebbf434", - "sha256:6ad6d10ed9b67a382b45f29ea028f92d25bc0bc1daf6c5b801b90b5aa70fb9ec", - "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", - "sha256:6fe79f998a4052d79e1c30eeb7d6c1c1056ad33300f682465e1b4e9b5a188b78", - "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d", - "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863", - "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53", - "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31", - "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15", - "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5", - "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b", - "sha256:84fc30f71689d7fc9168b92788abc977dc8cefa806909565fc2951d02f6b7d57", - "sha256:8619d6915b3b0b34420cf9b2bb6d81ef59d984cb0fde7544e9ece32b4b3043c3", - "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1", - "sha256:8be9e837ea9113676e5754b43b940b50cce76d9ed7d2461df1af39a8ee674d9f", - "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", - "sha256:957b4774373cf6f709359e5c8c4a0af9f6d7875db657adb0feaf8d6cb3c3964c", - "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", - "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", - "sha256:a00862fb23195b6b8322f7d781b0dc1d82cb3bcac346d1e38689370cc1cc398b", - "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2", - "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b", - "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9", - "sha256:a825ec844298c791fd28ed14ed1bffc56a98d15b8c58a20e0e08c1f5f2bea1be", - "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e", - "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", - "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", - "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", - "sha256:ad4d7a90a92e528aadf4965d685c17dacff3df282db1121136c382dc0b6014d2", - "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392", - "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91", - "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541", - "sha256:bef596fdaa8f26e3d66af846bbe77057237cb6e8efff8cd7cc8dff9a62278bbf", - "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572", - "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66", - "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575", - "sha256:c74018551e31269d56fab81a728f683667e7c28c04e807ba08f8c9e3bba32f14", - "sha256:ca06675212f94e7a610e85ca36948bb8fc023e458dd6c63ef71abfd482481aa5", - "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1", - "sha256:d25039a474c4c72a5ad4b52495056f843a7ff07b632c1b92ea9043a3d9950f6e", - "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551", - "sha256:d7d7f7de27b8944f1fee2c26a88b4dabc2409d2fea7a9ed3df79b67277644e17", - "sha256:d7eeb6d22331e2fd42fce928a81c697c9ee2d51400bd1a28803965883e13cead", - "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0", - "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe", - "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234", - "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0", - "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7", - "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34", - "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42", - "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385", - "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", - "sha256:ec61d826d80fc293ed46c9dd26995921e3a82146feacd952ef0757236fc137be", - "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958", - "sha256:f3bc6af6e2b8f92eced34ef6a96ffb248e863af20ef4fde9448cc8c9b858b749", - "sha256:f7d6b36dd2e029b6bcb8a13cf19664c7b8e19ab3a58e0fefbb5b8461447ed5ec" - ], - "markers": "python_version >= '3.7'", - "version": "==1.9.4" } }, "develop": { @@ -1097,11 +1032,11 @@ }, "aws-sam-translator": { "hashes": [ - "sha256:40cef8980d656107406dafe30aef34b67be33929d2b9492e93f8e9ce07ece1c1", - "sha256:80f4fb6d53774634b6ea84af5fdfa9ad94a46945bc4ad4ef11c8008540dfa7f8" + "sha256:aa93d498d8de3fb3d485c316155b1628144b823bbc176099a20de06df666fcac", + "sha256:e77c65f3488566122277accd44a0f1ec018e37403e0d5fe25120d96e537e91a7" ], "markers": "python_version >= '3.8' and python_version != '4.0' and python_version <= '4.0'", - "version": "==1.87.0" + "version": "==1.88.0" }, "aws-xray-sdk": { "hashes": [ @@ -1166,20 +1101,20 @@ }, "boto3": { "hashes": [ - "sha256:22f65b3c9b7a419f8f39c2dddc421e14fab8cbb3bd8a9d467e874237d39f59b1", - "sha256:bbb87d641c73462e53b1777083b55c8f13921618ad08757478a8122985c56c13" + "sha256:1d854b5880e185db546b4c759fcb664bf3326275064d2b44229cc217e8be9d7e", + "sha256:79b93f3370ea96ce838042bc2eac0c996aee204b01e7e6452eb77abcbe697d6a" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.34.94" + "version": "==1.34.101" }, "botocore": { "hashes": [ - "sha256:99b11be9a28f9051af4c96fa121e9c3f22a86d499abd773c9e868b2a38961bae", - "sha256:f00a79002e0cb9d6895ecd0919c506402850177d7b6c4d2634fa2da362d95bcb" + "sha256:01f3802d25558dd7945d83884bf6885e2f84e1ff27f90b5f09614966fe18c18f", + "sha256:f145e8b4b8fc9968f5eb695bdc2fcc8e675df7fbc3c56102dc1f5471be6baf35" ], "markers": "python_version >= '3.8'", - "version": "==1.34.94" + "version": "==1.34.101" }, "cached-property": { "hashes": [ @@ -1416,110 +1351,102 @@ "markers": "python_version >= '3.5'", "version": "==1.7" }, - "contextlib2": { - "hashes": [ - "sha256:3fbdb64466afd23abaf6c977627b75b6139a5a3e8ce38405c5b413aed7a0471f", - "sha256:ab1e2bfe1d01d968e1b7e8d9023bc51ef3509bba217bb730cee3827e1ee82869" - ], - "markers": "python_version >= '3.6'", - "version": "==21.6.0" - }, "coverage": { "hashes": [ - "sha256:075299460948cd12722a970c7eae43d25d37989da682997687b34ae6b87c0ef0", - "sha256:07dfdd492d645eea1bd70fb1d6febdcf47db178b0d99161d8e4eed18e7f62fe7", - "sha256:0cbdf2cae14a06827bec50bd58e49249452d211d9caddd8bd80e35b53cb04631", - "sha256:2055c4fb9a6ff624253d432aa471a37202cd8f458c033d6d989be4499aed037b", - "sha256:262fffc1f6c1a26125d5d573e1ec379285a3723363f3bd9c83923c9593a2ac25", - "sha256:280132aada3bc2f0fac939a5771db4fbb84f245cb35b94fae4994d4c1f80dae7", - "sha256:2b57780b51084d5223eee7b59f0d4911c31c16ee5aa12737c7a02455829ff067", - "sha256:2bd7065249703cbeb6d4ce679c734bef0ee69baa7bff9724361ada04a15b7e3b", - "sha256:3235d7c781232e525b0761730e052388a01548bd7f67d0067a253887c6e8df46", - "sha256:33c020d3322662e74bc507fb11488773a96894aa82a622c35a5a28673c0c26f5", - "sha256:357754dcdfd811462a725e7501a9b4556388e8ecf66e79df6f4b988fa3d0b39a", - "sha256:39793731182c4be939b4be0cdecde074b833f6171313cf53481f869937129ed3", - "sha256:3c2b77f295edb9fcdb6a250f83e6481c679335ca7e6e4a955e4290350f2d22a4", - "sha256:41327143c5b1d715f5f98a397608f90ab9ebba606ae4e6f3389c2145410c52b1", - "sha256:427e1e627b0963ac02d7c8730ca6d935df10280d230508c0ba059505e9233475", - "sha256:432949a32c3e3f820af808db1833d6d1631664d53dd3ce487aa25d574e18ad1c", - "sha256:4ba01d9ba112b55bfa4b24808ec431197bb34f09f66f7cb4fd0258ff9d3711b1", - "sha256:4d0e206259b73af35c4ec1319fd04003776e11e859936658cb6ceffdeba0f5be", - "sha256:51431d0abbed3a868e967f8257c5faf283d41ec882f58413cf295a389bb22e58", - "sha256:565b2e82d0968c977e0b0f7cbf25fd06d78d4856289abc79694c8edcce6eb2de", - "sha256:6782cd6216fab5a83216cc39f13ebe30adfac2fa72688c5a4d8d180cd52e8f6a", - "sha256:6afd2e84e7da40fe23ca588379f815fb6dbbb1b757c883935ed11647205111cb", - "sha256:710c62b6e35a9a766b99b15cdc56d5aeda0914edae8bb467e9c355f75d14ee95", - "sha256:84921b10aeb2dd453247fd10de22907984eaf80901b578a5cf0bb1e279a587cb", - "sha256:85a5dbe1ba1bf38d6c63b6d2c42132d45cbee6d9f0c51b52c59aa4afba057517", - "sha256:9c6384cc90e37cfb60435bbbe0488444e54b98700f727f16f64d8bfda0b84656", - "sha256:9dd88fce54abbdbf4c42fb1fea0e498973d07816f24c0e27a1ecaf91883ce69e", - "sha256:a81eb64feded34f40c8986869a2f764f0fe2db58c0530d3a4afbcde50f314880", - "sha256:a898c11dca8f8c97b467138004a30133974aacd572818c383596f8d5b2eb04a9", - "sha256:a9960dd1891b2ddf13a7fe45339cd59ecee3abb6b8326d8b932d0c5da208104f", - "sha256:a9a7ef30a1b02547c1b23fa9a5564f03c9982fc71eb2ecb7f98c96d7a0db5cf2", - "sha256:ad97ec0da94b378e593ef532b980c15e377df9b9608c7c6da3506953182398af", - "sha256:adf032b6c105881f9d77fa17d9eebe0ad1f9bfb2ad25777811f97c5362aa07f2", - "sha256:bbfe6389c5522b99768a93d89aca52ef92310a96b99782973b9d11e80511f932", - "sha256:bd4bacd62aa2f1a1627352fe68885d6ee694bdaebb16038b6e680f2924a9b2cc", - "sha256:bf0b4b8d9caa8d64df838e0f8dcf68fb570c5733b726d1494b87f3da85db3a2d", - "sha256:c379cdd3efc0658e652a14112d51a7668f6bfca7445c5a10dee7eabecabba19d", - "sha256:c58536f6892559e030e6924896a44098bc1290663ea12532c78cef71d0df8493", - "sha256:cbe6581fcff7c8e262eb574244f81f5faaea539e712a058e6707a9d272fe5b64", - "sha256:ced268e82af993d7801a9db2dbc1d2322e786c5dc76295d8e89473d46c6b84d4", - "sha256:cf3539007202ebfe03923128fedfdd245db5860a36810136ad95a564a2fdffff", - "sha256:cf62d17310f34084c59c01e027259076479128d11e4661bb6c9acb38c5e19bb8", - "sha256:d0194d654e360b3e6cc9b774e83235bae6b9b2cac3be09040880bb0e8a88f4a1", - "sha256:d3d117890b6eee85887b1eed41eefe2e598ad6e40523d9f94c4c4b213258e4a4", - "sha256:db2de4e546f0ec4b2787d625e0b16b78e99c3e21bc1722b4977c0dddf11ca84e", - "sha256:e768d870801f68c74c2b669fc909839660180c366501d4cc4b87efd6b0eee375", - "sha256:e7c211f25777746d468d76f11719e64acb40eed410d81c26cefac641975beb88", - "sha256:eed462b4541c540d63ab57b3fc69e7d8c84d5957668854ee4e408b50e92ce26a", - "sha256:f0bfe42523893c188e9616d853c47685e1c575fe25f737adf473d0405dcfa7eb", - "sha256:f609ebcb0242d84b7adeee2b06c11a2ddaec5464d21888b2c8255f5fd6a98ae4", - "sha256:fea9d3ca80bcf17edb2c08a4704259dadac196fe5e9274067e7a20511fad1743", - "sha256:fed7a72d54bd52f4aeb6c6e951f363903bd7d70bc1cad64dd1f087980d309ab9" + "sha256:0646599e9b139988b63704d704af8e8df7fa4cbc4a1f33df69d97f36cb0a38de", + "sha256:0cdcbc320b14c3e5877ee79e649677cb7d89ef588852e9583e6b24c2e5072661", + "sha256:0d0a0f5e06881ecedfe6f3dd2f56dcb057b6dbeb3327fd32d4b12854df36bf26", + "sha256:1434e088b41594baa71188a17533083eabf5609e8e72f16ce8c186001e6b8c41", + "sha256:16db7f26000a07efcf6aea00316f6ac57e7d9a96501e990a36f40c965ec7a95d", + "sha256:1cc0fe9b0b3a8364093c53b0b4c0c2dd4bb23acbec4c9240b5f284095ccf7981", + "sha256:1fc81d5878cd6274ce971e0a3a18a8803c3fe25457165314271cf78e3aae3aa2", + "sha256:2ec92012fefebee89a6b9c79bc39051a6cb3891d562b9270ab10ecfdadbc0c34", + "sha256:39afcd3d4339329c5f58de48a52f6e4e50f6578dd6099961cf22228feb25f38f", + "sha256:4a7b0ceee8147444347da6a66be737c9d78f3353b0681715b668b72e79203e4a", + "sha256:4a9ca3f2fae0088c3c71d743d85404cec8df9be818a005ea065495bedc33da35", + "sha256:4bf0655ab60d754491004a5efd7f9cccefcc1081a74c9ef2da4735d6ee4a6223", + "sha256:4cc37def103a2725bc672f84bd939a6fe4522310503207aae4d56351644682f1", + "sha256:4fc84a37bfd98db31beae3c2748811a3fa72bf2007ff7902f68746d9757f3746", + "sha256:5037f8fcc2a95b1f0e80585bd9d1ec31068a9bcb157d9750a172836e98bc7a90", + "sha256:54de9ef3a9da981f7af93eafde4ede199e0846cd819eb27c88e2b712aae9708c", + "sha256:556cf1a7cbc8028cb60e1ff0be806be2eded2daf8129b8811c63e2b9a6c43bca", + "sha256:57e0204b5b745594e5bc14b9b50006da722827f0b8c776949f1135677e88d0b8", + "sha256:5a5740d1fb60ddf268a3811bcd353de34eb56dc24e8f52a7f05ee513b2d4f596", + "sha256:5c3721c2c9e4c4953a41a26c14f4cef64330392a6d2d675c8b1db3b645e31f0e", + "sha256:5fa567e99765fe98f4e7d7394ce623e794d7cabb170f2ca2ac5a4174437e90dd", + "sha256:5fd215c0c7d7aab005221608a3c2b46f58c0285a819565887ee0b718c052aa4e", + "sha256:6175d1a0559986c6ee3f7fccfc4a90ecd12ba0a383dcc2da30c2b9918d67d8a3", + "sha256:61c4bf1ba021817de12b813338c9be9f0ad5b1e781b9b340a6d29fc13e7c1b5e", + "sha256:6537e7c10cc47c595828b8a8be04c72144725c383c4702703ff4e42e44577312", + "sha256:68f962d9b72ce69ea8621f57551b2fa9c70509af757ee3b8105d4f51b92b41a7", + "sha256:7352b9161b33fd0b643ccd1f21f3a3908daaddf414f1c6cb9d3a2fd618bf2572", + "sha256:796a79f63eca8814ca3317a1ea443645c9ff0d18b188de470ed7ccd45ae79428", + "sha256:79afb6197e2f7f60c4824dd4b2d4c2ec5801ceb6ba9ce5d2c3080e5660d51a4f", + "sha256:7a588d39e0925f6a2bff87154752481273cdb1736270642aeb3635cb9b4cad07", + "sha256:8748731ad392d736cc9ccac03c9845b13bb07d020a33423fa5b3a36521ac6e4e", + "sha256:8fe7502616b67b234482c3ce276ff26f39ffe88adca2acf0261df4b8454668b4", + "sha256:9314d5678dcc665330df5b69c1e726a0e49b27df0461c08ca12674bcc19ef136", + "sha256:9735317685ba6ec7e3754798c8871c2f49aa5e687cc794a0b1d284b2389d1bd5", + "sha256:9981706d300c18d8b220995ad22627647be11a4276721c10911e0e9fa44c83e8", + "sha256:9e78295f4144f9dacfed4f92935fbe1780021247c2fabf73a819b17f0ccfff8d", + "sha256:b016ea6b959d3b9556cb401c55a37547135a587db0115635a443b2ce8f1c7228", + "sha256:b6cf3764c030e5338e7f61f95bd21147963cf6aa16e09d2f74f1fa52013c1206", + "sha256:beccf7b8a10b09c4ae543582c1319c6df47d78fd732f854ac68d518ee1fb97fa", + "sha256:c0884920835a033b78d1c73b6d3bbcda8161a900f38a488829a83982925f6c2e", + "sha256:c3e757949f268364b96ca894b4c342b41dc6f8f8b66c37878aacef5930db61be", + "sha256:ca498687ca46a62ae590253fba634a1fe9836bc56f626852fb2720f334c9e4e5", + "sha256:d1d0d98d95dd18fe29dc66808e1accf59f037d5716f86a501fc0256455219668", + "sha256:d21918e9ef11edf36764b93101e2ae8cc82aa5efdc7c5a4e9c6c35a48496d601", + "sha256:d7fed867ee50edf1a0b4a11e8e5d0895150e572af1cd6d315d557758bfa9c057", + "sha256:db66fc317a046556a96b453a58eced5024af4582a8dbdc0c23ca4dbc0d5b3146", + "sha256:dde0070c40ea8bb3641e811c1cfbf18e265d024deff6de52c5950677a8fb1e0f", + "sha256:df4e745a81c110e7446b1cc8131bf986157770fa405fe90e15e850aaf7619bc8", + "sha256:e2213def81a50519d7cc56ed643c9e93e0247f5bbe0d1247d15fa520814a7cd7", + "sha256:ef48e2707fb320c8f139424a596f5b69955a85b178f15af261bab871873bb987", + "sha256:f152cbf5b88aaeb836127d920dd0f5e7edff5a66f10c079157306c4343d86c19", + "sha256:fc0b4d8bfeabd25ea75e94632f5b6e047eef8adaed0c2161ada1e922e7f7cece" ], "markers": "python_version >= '3.8'", - "version": "==7.5.0" + "version": "==7.5.1" }, "cryptography": { "hashes": [ - "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee", - "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576", - "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d", - "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30", - "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413", - "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb", - "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da", - "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4", - "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd", - "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc", - "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8", - "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1", - "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc", - "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e", - "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8", - "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940", - "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400", - "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7", - "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16", - "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278", - "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74", - "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec", - "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1", - "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2", - "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c", - "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922", - "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a", - "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6", - "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1", - "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e", - "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac", - "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7" + "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", + "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", + "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", + "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", + "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", + "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", + "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", + "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", + "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", + "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", + "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", + "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", + "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", + "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", + "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", + "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", + "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", + "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", + "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", + "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", + "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", + "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", + "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", + "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", + "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", + "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", + "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", + "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", + "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", + "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", + "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", + "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==42.0.5" + "version": "==42.0.7" }, "cyclonedx-python-lib": { "hashes": [ @@ -1538,10 +1465,10 @@ }, "detect-secrets": { "hashes": [ - "sha256:d08ecabeee8b68c0acb0e8a354fb98d822a653f6ed05e520cead4c6fc1fc02cd", - "sha256:d56787e339758cef48c9ccd6692f7a094b9963c979c9813580b0169e41132833" + "sha256:6bb46dcc553c10df51475641bb30fd69d25645cc12339e46c824c1e0c388898a", + "sha256:e24e7b9b5a35048c313e983f76c4bd09dad89f045ff059e354f9943bf45aa060" ], - "version": "==1.4.0" + "version": "==1.5.0" }, "dill": { "hashes": [ @@ -1733,11 +1660,11 @@ }, "jinja2": { "hashes": [ - "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa", - "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90" + "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", + "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d" ], "markers": "python_version >= '3.7'", - "version": "==3.1.3" + "version": "==3.1.4" }, "jmespath": { "hashes": [ @@ -2014,7 +1941,7 @@ "sha256:230d388117af870fce5647a3c52401fcf753e94720e6ea6b4197a5355648885e", "sha256:e435dfa75b1d7195c7b8378c3859f0445cd88c6b0375c181ed66823a9ceb7524" ], - "markers": "python_version >= '3.5'", + "markers": "python_version >= '3.8'", "version": "==2.8.8" }, "packageurl-python": { @@ -2587,7 +2514,6 @@ "sha256:01ae6a02b4f34e39bffceb0fc6786b67a25eae919c6368d05eabc8d9576c2a66", "sha256:2f0b9c2b6437db4b528619a77e5d565e4ec2a9532162ac1a131a83529db7be1a" ], - "index": "pypi", "markers": "python_version >= '3.8'", "version": "==0.25.0" }, @@ -2609,10 +2535,10 @@ }, "schema": { "hashes": [ - "sha256:f06717112c61895cabc4707752b88716e8420a8819d71404501e114f91043197", - "sha256:f3ffdeeada09ec34bf40d7d79996d9f7175db93b7a5065de0faa7f41083c1e6c" + "sha256:5d976a5b50f36e74e2157b47097b60002bd4d42e65425fcc9c9befadb4255dde", + "sha256:7da553abd2958a19dc2547c388cde53398b39196175a9be59ea1caf5ab0a1807" ], - "version": "==0.7.5" + "version": "==0.7.7" }, "semantic-version": { "hashes": [ @@ -2696,19 +2622,19 @@ }, "tomlkit": { "hashes": [ - "sha256:5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b", - "sha256:7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3" + "sha256:af914f5a9c59ed9d0762c7b64d3b5d5df007448eb9cd2edc8a46b1eafead172f", + "sha256:eef34fba39834d4d6b73c9ba7f3e4d1c417a4e56f89a7e96e090dd0d24b8fb3c" ], "markers": "python_version >= '3.7'", - "version": "==0.12.4" + "version": "==0.12.5" }, "tqdm": { "hashes": [ - "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9", - "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531" + "sha256:b75ca56b413b030bc3f00af51fd2c1a1a5eac6a0c1cca83cbb37a5c52abce644", + "sha256:e4d936c9de8727928f3be6079590e97d9abfe8d39a590be678eb5919ffc186bb" ], "markers": "python_version >= '3.7'", - "version": "==4.66.2" + "version": "==4.66.4" }, "types-setuptools": { "hashes": [ @@ -2759,11 +2685,11 @@ }, "werkzeug": { "hashes": [ - "sha256:3aac3f5da756f93030740bc235d3e09449efcf65f2f55e3602e1d851b8f48795", - "sha256:e39b645a6ac92822588e7b39a692e7828724ceae0b0d702ef96701f90e70128d" + "sha256:097e5bfda9f0aba8da6b8545146def481d06aa7d3266e7448e2cccf67dd8bd18", + "sha256:fc9645dc43e03e4d630d23143a04a7f947a9a3b5727cd535fdfe155a17cc48c8" ], "markers": "python_version >= '3.8'", - "version": "==3.0.2" + "version": "==3.0.3" }, "wrapt": { "hashes": [ diff --git a/backend/lambdas/api/repo/repo/github_util/github_utils.py b/backend/lambdas/api/repo/repo/github_util/github_utils.py index 0fccd28e..67e88a56 100644 --- a/backend/lambdas/api/repo/repo/github_util/github_utils.py +++ b/backend/lambdas/api/repo/repo/github_util/github_utils.py @@ -1,6 +1,6 @@ import json - import requests +from graphql_query import Argument, Field, Operation, Query, Variable from artemislib.github.app import GithubApp from repo.util.aws import AWSConnect @@ -18,19 +18,20 @@ def process_github( total_failed = [] grouped_reqs = _group_reqs(req_list) for org in grouped_reqs: + authorization = _get_authorization(org, service_secret) options_map = build_options_map(grouped_reqs[org]) - query_list, query_map, unauthorized = _build_queries(grouped_reqs[org], service, identity.scope) + query, query_map, query_vars, unauthorized = _build_query(org, grouped_reqs[org], service, identity.scope) queued, failed = _query( - query_list, + query, query_map, + query_vars, options_map, service, service_url, - service_secret, + authorization, nat_connect=nat_connect, identity=identity, diff_url=diff_url, - org=org, ) total_queued += queued total_failed += failed @@ -38,11 +39,35 @@ def process_github( return PROCESS_RESPONSE_TUPLE(total_queued, total_failed, unauthorized) -def _build_queries(req_list, service, authz): +def _get_query_response(authorization, service_url, query, variables): + # Query the GitHub API + headers = {"Authorization": authorization, "Content-Type": "application/json"} + if REV_PROXY_DOMAIN_SUBSTRING and REV_PROXY_DOMAIN_SUBSTRING in service_url: + headers[REV_PROXY_SECRET_HEADER] = GetProxySecret() + log.error(service_url) + response = requests.post( + url=service_url, + headers=headers, + json={"query": query, "variables": variables}, + ) + + log.info("Got API response") + + if response.status_code != 200: + log.error("Error retrieving query: %s", response.text) + return None + + return json.loads(response.text) + + +def _build_query(org, req_list, service, authz): # Build up a GraphQL query for each repo in the request unauthorized = [] query_list = [] query_map = {} + variables = {"org": org} + var_defs = {} + var_defs.update({"org": Variable(name="org", type="String!")}) count = 0 for req in req_list: @@ -56,44 +81,41 @@ def _build_queries(req_list, service, authz): unauthorized.append({"repo": f"{service}/{org_name}/{req['repo']}", "error": "Not Authorized"}) continue + repo_alias = f"repo{count}" + variables.update({repo_alias: req["repo"]}) + + var_defs.update({repo_alias: Variable(name=repo_alias, type="String!")}) + query = Query( + name="repository", + alias=repo_alias, + arguments=[ + Argument(name="owner", value=var_defs.get("org")), + Argument(name="name", value=var_defs.get(repo_alias)), + ], + fields=["url", "nameWithOwner", "isPrivate", "diskUsage"], + ) + if branch_name: - # Escape Double quotes in branch name. Leaving double quotes in will affect the graphql query - branch_name = branch_name.replace('"', '\\"') - query_list.append( - """ - repo%d: repository(owner: "%s", name: "%s") { - url - nameWithOwner - isPrivate - diskUsage - ref(qualifiedName: "%s") {name} - } - """ - % (count, org_name, req["repo"], branch_name) - ) - else: - # If no branch was specified don't include ref in the query so - # we can distinguish between no branch and invalid branch in the - # query results. - query_list.append( - """ - repo%d: repository(owner: "%s", name: "%s") { - url - nameWithOwner - isPrivate - diskUsage - } - """ - % (count, org_name, req["repo"]) + branch_alias = f"branch{count}" + var_defs.update({branch_alias: Variable(name=branch_alias, type="String!")}) + query.fields.append( + Field( + name="ref", + arguments=[Argument(name="qualified_name", value=var_defs.get(branch_alias))], + fields=["name"], + ) ) + variables.update({f"branch{count}": branch_name}) - query_map["repo%d" % count] = "%s/%s" % (org_name, req["repo"]) + query_list.append(query) + query_map[repo_alias] = f"{org_name}/{req['repo']}" count += 1 - return query_list, query_map, unauthorized + operation = Operation(type="query", name="GetRepos", variables=var_defs.values(), queries=query_list) + return operation.render(), query_map, variables, unauthorized -def _get_query_response(authorization, service_url, query_list): +def _get_query_response(authorization, service_url, query, variables): # Query the GitHub API headers = {"Authorization": authorization, "Content-Type": "application/json"} if REV_PROXY_DOMAIN_SUBSTRING and REV_PROXY_DOMAIN_SUBSTRING in service_url: @@ -102,7 +124,7 @@ def _get_query_response(authorization, service_url, query_list): response = requests.post( url=service_url, headers=headers, - json={"query": "{%s}" % " ".join(query_list)}, + json={"query": query, "variables": variables}, ) log.info("Got API response") @@ -115,22 +137,18 @@ def _get_query_response(authorization, service_url, query_list): def _query( - query_list, query_map, options_map, service, service_url, service_secret, nat_connect, identity, diff_url, org + query, query_map, query_vars, options_map, service, service_url, authorization, nat_connect, identity, diff_url ): - """ - todo: move queueing repos to aws.py - """ aws_connect = AWSConnect() queued = [] failed = [] - if not query_list: + if not query: return queued, failed - authorization = _get_authorization(org, service_secret) + log.info("Querying GitHub API for %d repos" % len(query_map)) - log.info("Querying GitHub API for %d repos" % len(query_list)) + resp = _get_query_response(authorization, service_url, query, query_vars) - resp = _get_query_response(authorization, service_url, query_list) if resp is None: log.info("Query was invalid, returning") return None diff --git a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab.py b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab.py index 435ccc1c..b743564f 100644 --- a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab.py +++ b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab.py @@ -1,6 +1,6 @@ from repo.gitlab_util.process_gitlab_utils import ( - _build_queries, - _process_query_list, + build_queries, + process_query_list, check_diff, queue_gitlab_repository, ) @@ -12,9 +12,10 @@ def process_gitlab(req_list, service, service_url, service_secret, batch_queries, nat_connect, identity, diff_url): options_map = build_options_map(req_list) - query_list, query_map, unauthorized = _build_queries(req_list, identity.scope, service) + query_list, variables, query_map, unauthorized = build_queries(req_list, identity.scope, service, batch_queries) queued, failed = _query( query_list, + variables, query_map, options_map, service, @@ -31,6 +32,7 @@ def process_gitlab(req_list, service, service_url, service_secret, batch_queries def _query( query_list, + variables, query_map, options_map, service, @@ -50,7 +52,7 @@ def _query( log.info(f"Querying {service} API for {len(query_list)} repos") - resp = _process_query_list(key, service_url, query_list, batch_queries) + resp = process_query_list(key, service_url, query_list, variables, batch_queries) log.info("Queuing repos") diff --git a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py index 35b7aa75..f81e60f5 100644 --- a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py +++ b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py @@ -2,26 +2,23 @@ import json import re import urllib -from string import Template - import requests +from string import Template +from graphql_query import Argument, Field, Operation, Query, Variable from repo.util.aws import AWSConnect -from repo.util.const import GITLAB_QUERY_NO_BRANCH, GITLAB_QUERY_WITH_BRANCH from repo.util.env import DEFAULT_ORG, REV_PROXY_DOMAIN_SUBSTRING, REV_PROXY_SECRET_HEADER from repo.util.utils import GetProxySecret, Logger, auth log = Logger(__name__) -def _process_query_list(key, service_url, query_list, batch_query=True): +def process_query_list(key, service_url, query_list, vars, batch_query=True): if batch_query: - query = "{%s}" % " ".join(query_list) - return _get_query_response(key, service_url, query) + return _get_query_response(key, service_url, query_list, vars) response_dict = {"data": {}} for query_item in query_list: - query = "query {}".format(query_item) - resp = _get_query_response(key, service_url, query) + resp = _get_query_response(key, service_url, query_item, vars) if resp and "data" in resp and "project" in resp.get("data"): resp_data = resp["data"]["project"] repo = re.match("repo[0-9]*", query_item.strip()).group(0) @@ -32,11 +29,11 @@ def _process_query_list(key, service_url, query_list, batch_query=True): return response_dict -def _get_query_response(key, service_url, query): +def _get_query_response(key, service_url, query, vars): headers = {"Authorization": "Bearer %s" % key, "Content-Type": "application/json"} if REV_PROXY_DOMAIN_SUBSTRING and REV_PROXY_DOMAIN_SUBSTRING in service_url: headers[REV_PROXY_SECRET_HEADER] = GetProxySecret() - response = requests.post(url=service_url, headers=headers, json={"query": query}) + response = requests.post(url=service_url, headers=headers, json={"query": query, "variables": vars}) log.info("Got API response") if response.status_code != 200: log.error("Error retrieving query: %s", response.text) @@ -59,39 +56,69 @@ def check_diff(diff_url, key, org_repo, base, compare): return r.status_code == 200 -def _build_queries(req_list, authz, service): +def build_queries(req_list, authz, service, batch_queries): # Build up a GraphQL query for each repo in the request unauthorized = [] query_list = [] query_map = {} + variables = {} + var_defs = {} + queries = [] + var_defs.update({"org": Variable(name="org", type="String!")}) count = 0 for req in req_list: branch_name = req.get("branch") org_name = req.get("org", DEFAULT_ORG) - + variables.update({"org": org_name}) # Validate that this API key is authorized to scan this repo allowed = auth(f"{org_name}/{req['repo']}", service, authz) if not allowed: unauthorized.append({"repo": f"{service}/{org_name}/{req['repo']}", "error": "Not Authorized"}) continue + repo_alias = f"repo{count}" + variables.update({repo_alias: f"{org_name}/{req['repo']}"}) + + var_defs.update({repo_alias: Variable(name=repo_alias, type="String!")}) + query = Query( + name="project", + alias=repo_alias, + arguments=[ + Argument(name="fullPath", value=var_defs.get(repo_alias)), + ], + fields=["httpUrlToRepo", "fullPath", "visibility", Field(name="statistics", fields=["repositorySize"])], + ) + if branch_name: - query = Template(GITLAB_QUERY_WITH_BRANCH).substitute( - count=count, org_name=org_name, repo=req["repo"], branch=branch_name + branch_alias = f"branch{count}" + var_defs.update({branch_alias: Variable(name=branch_alias, type="String!")}) + query.fields.append( + Field( + name="repository", + fields=[ + Field( + name="tree", + arguments=[Argument(name="ref", value=var_defs.get(branch_alias))], + fields=[Field(name="lastCommit", fields=["id"])], + ) + ], + ) ) - query_list.append(query) - else: - # If no branch was specified don't include ref in the query so - # we can distinguish between no branch and invalid branch in the - # query results. - query = Template(GITLAB_QUERY_NO_BRANCH).substitute(count=count, org_name=org_name, repo=req["repo"]) - query_list.append(query) + variables.update({branch_alias: branch_name}) + query_list.append(query) query_map["repo%d" % count] = {"repo": "%s/%s" % (org_name, req["repo"]), "branch": branch_name} count += 1 - return query_list, query_map, unauthorized + if batch_queries: + operation = Operation(type="query", name="GetRepos", variables=var_defs.values(), queries=query_list) + queries.append(operation.render()) + else: + for item in query_list: + operation = Operation(type="query", name="GetRepo", variables=var_defs.values(), queries=item) + queries.append(operation.render()) + return queries, variables, query_map, unauthorized def queue_gitlab_repository( diff --git a/backend/lambdas/api/repo/repo/util/const.py b/backend/lambdas/api/repo/repo/util/const.py index 476d98b6..128df6a5 100644 --- a/backend/lambdas/api/repo/repo/util/const.py +++ b/backend/lambdas/api/repo/repo/util/const.py @@ -2,6 +2,7 @@ Constants file todo : search plugin settings.json to obtain a dynamic list of plugins and categories. """ + # pylint: disable=no-member import os from collections import namedtuple @@ -186,35 +187,6 @@ "exclude_paths", ] -GITLAB_QUERY_WITH_BRANCH = """ -repo$count{ project(fullPath: "$org_name/$repo") { - httpUrlToRepo, - fullPath, - visibility, - statistics { - repositorySize - } - repository { - tree(ref: "$branch") { - lastCommit { - id - } - } - } -}} -""" - -GITLAB_QUERY_NO_BRANCH = """ -repo$count{ project(fullPath: "$org_name/$repo") { - httpUrlToRepo, - fullPath, - visibility, - statistics { - repositorySize - } -}} -""" - BITBUCKET_PUBLIC_REPO_QUERY = "$service_url/repositories/$org/$repo" BITBUCKET_PRIVATE_REPO_QUERY = "$service_url/projects/$org/repos/$repo" diff --git a/backend/lambdas/api/repo/tests/test_github_utils.py b/backend/lambdas/api/repo/tests/test_github_utils.py index 28d3d6c6..a34ebb8c 100644 --- a/backend/lambdas/api/repo/tests/test_github_utils.py +++ b/backend/lambdas/api/repo/tests/test_github_utils.py @@ -1,35 +1,116 @@ -import json -import os import unittest +from repo.github_util.github_utils import _build_query -import pytest +ORG = "org" +SERVICE = "github" +AUTHZ = [[["github/*"]]] -from repo.github_util.github_utils import _get_query_response -from repo.util.utils import get_api_key -TEST_DIR = os.path.dirname(os.path.abspath(__file__)) - -with open(os.path.join(TEST_DIR, "data/services.json")) as services_file: - SERVICES_DICT = json.load(services_file) - -PRIVATE_PROXY_GITHUB = SERVICES_DICT["services"]["git.example.com"] +class TestGithub(unittest.TestCase): + def test_single_repo_with_no_branch(self): + expected_query = """query GetRepos( + $org: String! + $repo0: String! +) { + repo0: repository( + owner: $org + name: $repo0 + ) { + url + nameWithOwner + isPrivate + diskUsage + } +}""" + expected_vars = {"org": ORG, "repo0": "artemis"} + req_list = [{"org": ORG, "branch": "", "repo": "artemis"}] + query, _, variables, _ = _build_query(ORG, req_list, SERVICE, AUTHZ) + self.assertEqual(query, expected_query) + self.assertEqual(variables, expected_vars) -QUERY_LIST = [ - """ - repo0: repository(owner: "example", name: "behavior3") { - url - nameWithOwner - isPrivate - diskUsage - } - """ -] + def test_multi_repos_with_some_branches(self): + expected_query = """query GetRepos( + $org: String! + $repo0: String! + $branch0: String! + $repo1: String! + $repo2: String! + $branch2: String! + $repo3: String! + $branch3: String! +) { + repo0: repository( + owner: $org + name: $repo0 + ) { + url + nameWithOwner + isPrivate + diskUsage + ref( + qualified_name: $branch0 + ) { + name + } + } + repo1: repository( + owner: $org + name: $repo1 + ) { + url + nameWithOwner + isPrivate + diskUsage + } -@pytest.mark.integtest -class TestGithub(unittest.TestCase): - def test_private_github_rev_proxy_query(self): - authorization = f"bearer {get_api_key(PRIVATE_PROXY_GITHUB['secret_loc'])}" + repo2: repository( + owner: $org + name: $repo2 + ) { + url + nameWithOwner + isPrivate + diskUsage + ref( + qualified_name: $branch2 + ) { + name + } + } - resp = _get_query_response(authorization, PRIVATE_PROXY_GITHUB["url"], QUERY_LIST) - self.assertEqual(resp["data"]["repo0"]["nameWithOwner"], "example/behavior3") + repo3: repository( + owner: $org + name: $repo3 + ) { + url + nameWithOwner + isPrivate + diskUsage + ref( + qualified_name: $branch3 + ) { + name + } + } +}""" + expected_vars = { + "org": ORG, + "repo0": "artemis1", + "branch0": "main", + "repo1": "artemis2", + "repo2": "artemis3", + "branch2": "main", + "repo3": "artemis4", + "branch3": "main", + } + req_list = [ + {"org": ORG, "branch": "main", "repo": "artemis1"}, + {"org": ORG, "branch": "", "repo": "artemis2"}, + {"org": ORG, "branch": "main", "repo": "artemis3"}, + {"org": ORG, "branch": "main", "repo": "artemis4"}, + ] + query, query_map, variables, _ = _build_query(ORG, req_list, SERVICE, AUTHZ) + self.assertEqual(query, expected_query) + self.assertEqual(len(query_map), 4) + self.assertEqual(variables, expected_vars) diff --git a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py index baca3cc3..12562f4c 100644 --- a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py +++ b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py @@ -1,10 +1,51 @@ import unittest -from string import Template from unittest.mock import patch from repo.gitlab_util import process_gitlab_utils -from repo.util.const import GITLAB_QUERY_NO_BRANCH, GITLAB_QUERY_WITH_BRANCH +SERVICE = "gitlab" +AUTHZ = [[["gitlab/*"]]] + +GITLAB_QUERY_WITH_BRANCH_EXPECTED = """query GetRepos( + $org: String! + $repo0: String! + $branch0: String! +) { + repo0: project( + fullPath: $repo0 + ) { + httpUrlToRepo + fullPath + visibility + statistics { + repositorySize + } + repository { + tree( + ref: $branch0 + ) { + lastCommit { + id + } + } + } + } +}""" +GITLAB_QUERY_NO_BRANCH_EXPECTED = """query GetRepos( + $org: String! + $repo0: String! +) { + repo0: project( + fullPath: $repo0 + ) { + httpUrlToRepo + fullPath + visibility + statistics { + repositorySize + } + } +}""" TEST_SERVICE_URL = None TEST_QUERY_LIST = [ ' repo0 {\n project(fullPath: "test/test_package") {\n httpUrlToRepo,' @@ -29,25 +70,23 @@ class TestGitlabUtils(unittest.TestCase): def test_process_query_list(self, get_query_response): self.assertEqual(process_gitlab_utils._get_query_response, get_query_response) get_query_response.return_value = TEST_QUERY_RESPONSE - resp = process_gitlab_utils._process_query_list(None, TEST_SERVICE_URL, TEST_QUERY_LIST, False) + resp = process_gitlab_utils.process_query_list(None, TEST_SERVICE_URL, TEST_QUERY_LIST, {}, False) self.assertEqual(TEST_RESPONSE_DICT, resp) def test_build_query_no_branch(self): - request_list = [{"org": "testorg", "repo": "testrepo"}] - expected_query = Template(GITLAB_QUERY_NO_BRANCH).substitute( - count=0, org_name=request_list[0]["org"], repo=request_list[0]["repo"] + request_list = [{"org": "testorg", "repo": "artemis"}] + + query_list, variables, _, _ = process_gitlab_utils.build_queries( + req_list=request_list, authz=AUTHZ, service=SERVICE, batch_queries=True ) - self.build_queries(request_list, expected_query) + print(query_list[0]) + self.assertEqual(query_list[0], GITLAB_QUERY_NO_BRANCH_EXPECTED) + self.assertEqual(variables, {"org": "testorg", "repo0": "testorg/artemis"}) def test_build_queries_branch(self): - request_list = [{"org": "testorg", "repo": "testrepo", "branch": "main"}] - expected_query = Template(GITLAB_QUERY_WITH_BRANCH).substitute( - count=0, org_name=request_list[0]["org"], repo=request_list[0]["repo"], branch=request_list[0]["branch"] + request_list = [{"org": "testorg", "repo": "artemis", "branch": "main"}] + query_list, variables, _, _ = process_gitlab_utils.build_queries( + req_list=request_list, authz=AUTHZ, service=SERVICE, batch_queries=True ) - self.build_queries(request_list, expected_query) - - def build_queries(self, request_list, expected_query): - service_type = "github" - authz = [[["github/*"]]] - query_list, _, _ = process_gitlab_utils._build_queries(req_list=request_list, authz=authz, service=service_type) - self.assertEqual(expected_query.strip(), query_list[0].strip()) + self.assertEqual(query_list[0], GITLAB_QUERY_WITH_BRANCH_EXPECTED) + self.assertEqual(variables, {"org": "testorg", "repo0": "testorg/artemis", "branch0": "main"}) diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/data/introspection_json.py b/backend/lambdas/scheduled/update_github_org_users/tests/data/introspection_json.py deleted file mode 100644 index d76fca4f..00000000 --- a/backend/lambdas/scheduled/update_github_org_users/tests/data/introspection_json.py +++ /dev/null @@ -1,102873 +0,0 @@ -introspection = { - "data": { - "__schema": { - "queryType": {"name": "Query"}, - "mutationType": {"name": "Mutation"}, - "subscriptionType": None, - "types": [ - { - "kind": "INPUT_OBJECT", - "name": "AbortQueuedMigrationsInput", - "description": "Autogenerated input type of AbortQueuedMigrations", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AbortQueuedMigrationsPayload", - "description": "Autogenerated return type of AbortQueuedMigrations", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "success", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AbortRepositoryMigrationInput", - "description": "Autogenerated input type of AbortRepositoryMigration", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "migrationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AbortRepositoryMigrationPayload", - "description": "Autogenerated return type of AbortRepositoryMigration", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "success", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AcceptEnterpriseAdministratorInvitationInput", - "description": "Autogenerated input type of AcceptEnterpriseAdministratorInvitation", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "invitationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AcceptEnterpriseAdministratorInvitationPayload", - "description": "Autogenerated return type of AcceptEnterpriseAdministratorInvitation", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitation", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AcceptTopicSuggestionInput", - "description": "Autogenerated input type of AcceptTopicSuggestion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AcceptTopicSuggestionPayload", - "description": "Autogenerated return type of AcceptTopicSuggestion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topic", - "args": [], - "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, - "isDeprecated": True, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Actor", - "description": "Represents an object which can take actions on GitHub. Typically a User or Bot.", - "fields": [ - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Bot", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseUserAccount", "ofType": None}, - {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ActorLocation", - "description": "Location information for an actor", - "fields": [ - { - "name": "city", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "country", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "countryCode", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "region", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "regionCode", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ActorType", - "description": "The actor's type.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "USER", "isDeprecated": False, "deprecationReason": None}, - {"name": "TEAM", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddAssigneesToAssignableInput", - "description": "Autogenerated input type of AddAssigneesToAssignable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "assignableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "assigneeIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddAssigneesToAssignablePayload", - "description": "Autogenerated return type of AddAssigneesToAssignable", - "fields": [ - { - "name": "assignable", - "args": [], - "type": {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCommentInput", - "description": "Autogenerated input type of AddComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddCommentPayload", - "description": "Autogenerated return type of AddComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commentEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "IssueCommentEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": {"kind": "INTERFACE", "name": "Node", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "timelineEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "IssueTimelineItemEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddDiscussionCommentInput", - "description": "Autogenerated input type of AddDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "discussionId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "replyToId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddDiscussionCommentPayload", - "description": "Autogenerated return type of AddDiscussionComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comment", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddDiscussionPollVoteInput", - "description": "Autogenerated input type of AddDiscussionPollVote", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pollOptionId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddDiscussionPollVotePayload", - "description": "Autogenerated return type of AddDiscussionPollVote", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pollOption", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionPollOption", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddEnterpriseOrganizationMemberInput", - "description": "Autogenerated input type of AddEnterpriseOrganizationMember", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "userIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "role", - "type": {"kind": "ENUM", "name": "OrganizationMemberRole", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddEnterpriseOrganizationMemberPayload", - "description": "Autogenerated return type of AddEnterpriseOrganizationMember", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "users", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddEnterpriseSupportEntitlementInput", - "description": "Autogenerated input type of AddEnterpriseSupportEntitlement", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "login", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddEnterpriseSupportEntitlementPayload", - "description": "Autogenerated return type of AddEnterpriseSupportEntitlement", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddLabelsToLabelableInput", - "description": "Autogenerated input type of AddLabelsToLabelable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labelableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "labelIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddLabelsToLabelablePayload", - "description": "Autogenerated return type of AddLabelsToLabelable", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labelable", - "args": [], - "type": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProjectCardInput", - "description": "Autogenerated input type of AddProjectCard", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectColumnId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "contentId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "note", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddProjectCardPayload", - "description": "Autogenerated return type of AddProjectCard", - "fields": [ - { - "name": "cardEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectCardEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectColumn", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProjectColumnInput", - "description": "Autogenerated input type of AddProjectColumn", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddProjectColumnPayload", - "description": "Autogenerated return type of AddProjectColumn", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "columnEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectColumnEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProjectV2DraftIssueInput", - "description": "Autogenerated input type of AddProjectV2DraftIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "assigneeIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddProjectV2DraftIssuePayload", - "description": "Autogenerated return type of AddProjectV2DraftIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectItem", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProjectV2ItemByIdInput", - "description": "Autogenerated input type of AddProjectV2ItemById", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "contentId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddProjectV2ItemByIdPayload", - "description": "Autogenerated return type of AddProjectV2ItemById", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewCommentInput", - "description": "Autogenerated input type of AddPullRequestReviewComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "commitOID", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "path", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "position", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "inReplyTo", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddPullRequestReviewCommentPayload", - "description": "Autogenerated return type of AddPullRequestReviewComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comment", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commentEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewCommentEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewInput", - "description": "Autogenerated input type of AddPullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "commitOID", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "event", - "type": {"kind": "ENUM", "name": "PullRequestReviewEvent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "comments", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DraftPullRequestReviewComment", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "threads", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DraftPullRequestReviewThread", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddPullRequestReviewPayload", - "description": "Autogenerated return type of AddPullRequestReview", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReview", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewThreadInput", - "description": "Autogenerated input type of AddPullRequestReviewThread", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "line", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "side", - "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, - "defaultValue": "RIGHT", - }, - { - "name": "startLine", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "startSide", - "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, - "defaultValue": "RIGHT", - }, - { - "name": "subjectType", - "type": {"kind": "ENUM", "name": "PullRequestReviewThreadSubjectType", "ofType": None}, - "defaultValue": "LINE", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddPullRequestReviewThreadPayload", - "description": "Autogenerated return type of AddPullRequestReviewThread", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "thread", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewThreadReplyInput", - "description": "Autogenerated input type of AddPullRequestReviewThreadReply", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewThreadId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddPullRequestReviewThreadReplyPayload", - "description": "Autogenerated return type of AddPullRequestReviewThreadReply", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comment", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddReactionInput", - "description": "Autogenerated input type of AddReaction", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "content", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddReactionPayload", - "description": "Autogenerated return type of AddReaction", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reaction", - "args": [], - "type": {"kind": "OBJECT", "name": "Reaction", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddStarInput", - "description": "Autogenerated input type of AddStar", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "starrableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddStarPayload", - "description": "Autogenerated return type of AddStar", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "starrable", - "args": [], - "type": {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddUpvoteInput", - "description": "Autogenerated input type of AddUpvote", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddUpvotePayload", - "description": "Autogenerated return type of AddUpvote", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": {"kind": "INTERFACE", "name": "Votable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "AddVerifiableDomainInput", - "description": "Autogenerated input type of AddVerifiableDomain", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "domain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddVerifiableDomainPayload", - "description": "Autogenerated return type of AddVerifiableDomain", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "domain", - "args": [], - "type": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddedToMergeQueueEvent", - "description": "Represents an 'added_to_merge_queue' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enqueuer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeQueue", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AddedToProjectEvent", - "description": "Represents a 'added_to_project' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectCard", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectColumnName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "AnnouncementBanner", - "description": "Represents an announcement banner.", - "fields": [ - { - "name": "announcement", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "announcementExpiresAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "announcementUserDismissible", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "App", - "description": "A GitHub App.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListEntries", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for IP allow list entries returned.", - "type": {"kind": "INPUT_OBJECT", "name": "IpAllowListEntryOrder", "ofType": None}, - "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IpAllowListEntryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "logoBackgroundColor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "logoUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "slug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ApproveDeploymentsPayload", - "description": "Autogenerated return type of ApproveDeployments", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployments", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ApproveVerifiableDomainInput", - "description": "Autogenerated input type of ApproveVerifiableDomain", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ApproveVerifiableDomainPayload", - "description": "Autogenerated return type of ApproveVerifiableDomain", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "domain", - "args": [], - "type": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ArchiveProjectV2ItemInput", - "description": "Autogenerated input type of ArchiveProjectV2Item", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "itemId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ArchiveProjectV2ItemPayload", - "description": "Autogenerated return type of ArchiveProjectV2Item", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ArchiveRepositoryInput", - "description": "Autogenerated input type of ArchiveRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ArchiveRepositoryPayload", - "description": "Autogenerated return type of ArchiveRepository", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Assignable", - "description": "An object that can have users assigned to it.", - "fields": [ - { - "name": "assignees", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "AssignedEvent", - "description": "Represents an 'assigned' event on any assignable object.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assignable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assignee", - "args": [], - "type": {"kind": "UNION", "name": "Assignee", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.", - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "Assignee", - "description": "Types that can be assigned to issues.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Bot", "ofType": None}, - {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "INTERFACE", - "name": "AuditEntry", - "description": "An entry in the audit log.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgAddBillingManagerAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgBlockUserAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableOauthAppRestrictionsAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableSamlAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableTwoFactorRequirementAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableOauthAppRestrictionsAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableSamlAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableTwoFactorRequirementAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveBillingManagerAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveOutsideCollaboratorAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRestoreMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUnblockUserAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUpdateMemberAuditEntry", "ofType": None}, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "ofType": None, - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "ofType": None, - }, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, - ], - }, - { - "kind": "UNION", - "name": "AuditEntryActor", - "description": "Types that can initiate an audit log event.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Bot", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "AuditLogOrder", - "description": "Ordering options for Audit Log connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": {"kind": "ENUM", "name": "AuditLogOrderField", "ofType": None}, - "defaultValue": None, - }, - { - "name": "direction", - "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "AuditLogOrderField", - "description": "Properties by which Audit Log connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AutoMergeDisabledEvent", - "description": "Represents a 'auto_merge_disabled' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "disabler", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reasonCode", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AutoMergeEnabledEvent", - "description": "Represents a 'auto_merge_enabled' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enabler", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AutoMergeRequest", - "description": "Represents an auto-merge request for a pull request", - "fields": [ - { - "name": "authorEmail", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitBody", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitHeadline", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enabledAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enabledBy", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeMethod", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AutoRebaseEnabledEvent", - "description": "Represents a 'auto_rebase_enabled' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enabler", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AutoSquashEnabledEvent", - "description": "Represents a 'auto_squash_enabled' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enabler", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AutomaticBaseChangeFailedEvent", - "description": "Represents a 'automatic_base_change_failed' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "newBase", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oldBase", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "AutomaticBaseChangeSucceededEvent", - "description": "Represents a 'automatic_base_change_succeeded' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "newBase", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oldBase", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "Base64String", - "description": "A (potentially binary) string encoded using base64.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BaseRefChangedEvent", - "description": "Represents a 'base_ref_changed' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "currentRefName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "previousRefName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BaseRefDeletedEvent", - "description": "Represents a 'base_ref_deleted' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "baseRefName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BaseRefForcePushedEvent", - "description": "Represents a 'base_ref_force_pushed' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "afterCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "beforeCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "BigInt", - "description": "Represents non-fractional signed whole numeric values. Since the value may exceed the size of a 32-bit integer, it's encoded as a string.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Blame", - "description": "Represents a Git blame.", - "fields": [ - { - "name": "ranges", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BlameRange", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BlameRange", - "description": "Represents a range of information from a Git blame.", - "fields": [ - { - "name": "age", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "endingLine", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startingLine", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Blob", - "description": "Represents a Git blob.", - "fields": [ - { - "name": "abbreviatedOid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "byteSize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isBinary", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isTruncated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "text", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "Represents `true` or `false` values.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Bot", - "description": "A special type of user which takes actions on behalf of GitHub Apps.", - "fields": [ - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "BranchActorAllowanceActor", - "description": "Types which can be actors for `BranchActorAllowance` objects.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "App", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "BranchNamePatternParameters", - "description": "Parameters to be used for the branch_name_pattern rule", - "fields": [ - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "negate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operator", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pattern", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "BranchNamePatternParametersInput", - "description": "Parameters to be used for the branch_name_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "negate", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "operator", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "pattern", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRule", - "description": "A branch protection rule.", - "fields": [ - { - "name": "allowsDeletions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "allowsForcePushes", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blocksCreations", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "branchProtectionRuleConflicts", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflictConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bypassForcePushAllowances", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BypassForcePushAllowanceConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bypassPullRequestAllowances", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BypassPullRequestAllowanceConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismissesStaleReviews", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isAdminEnforced", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockAllowsFetchAndMerge", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockBranch", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "matchingRefs", - "args": [ - { - "name": "query", - "description": "Filters refs with query on name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RefConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pattern", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pushAllowances", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PushAllowanceConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requireLastPushApproval", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiredApprovingReviewCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiredDeploymentEnvironments", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiredStatusCheckContexts", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiredStatusChecks", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RequiredStatusCheckDescription", - "ofType": None, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresApprovingReviews", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresCodeOwnerReviews", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresCommitSignatures", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresConversationResolution", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresDeployments", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresLinearHistory", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresStatusChecks", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresStrictStatusChecks", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restrictsPushes", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restrictsReviewDismissals", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewDismissalAllowances", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ReviewDismissalAllowanceConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflict", - "description": "A conflict between two branch protection rules.", - "fields": [ - { - "name": "branchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "conflictingBranchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflictConnection", - "description": "The connection type for BranchProtectionRuleConflict.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflictEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BranchProtectionRuleConflict", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleConflictEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRuleConflict", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleConnection", - "description": "The connection type for BranchProtectionRule.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BranchProtectionRuleEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BranchProtectionRuleEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "BulkSponsorship", - "description": "Information about a sponsorship to make for a user or organization with a GitHub Sponsors profile, as part of sponsoring many users or organizations at once.", - "fields": None, - "inputFields": [ - { - "name": "sponsorableId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "amount", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "BypassActor", - "description": "Types that can represent a repository ruleset bypass actor.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "App", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "BypassForcePushAllowance", - "description": "A user, team, or app who has the ability to bypass a force push requirement on a protected branch.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "BranchActorAllowanceActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "branchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BypassForcePushAllowanceConnection", - "description": "The connection type for BypassForcePushAllowance.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BypassForcePushAllowanceEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BypassForcePushAllowance", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BypassForcePushAllowanceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "BypassForcePushAllowance", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BypassPullRequestAllowance", - "description": "A user, team, or app who has the ability to bypass a pull request requirement on a protected branch.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "BranchActorAllowanceActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "branchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BypassPullRequestAllowanceConnection", - "description": "The connection type for BypassPullRequestAllowance.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BypassPullRequestAllowanceEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BypassPullRequestAllowance", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "BypassPullRequestAllowanceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "BypassPullRequestAllowance", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CVSS", - "description": "The Common Vulnerability Scoring System", - "fields": [ - { - "name": "score", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "vectorString", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CWE", - "description": "A common weakness enumeration", - "fields": [ - { - "name": "cweId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CWEConnection", - "description": "The connection type for CWE.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CWEEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CWE", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CWEEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CWE", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CancelEnterpriseAdminInvitationInput", - "description": "Autogenerated input type of CancelEnterpriseAdminInvitation", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "invitationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CancelEnterpriseAdminInvitationPayload", - "description": "Autogenerated return type of CancelEnterpriseAdminInvitation", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitation", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CancelSponsorshipInput", - "description": "Autogenerated input type of CancelSponsorship", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CancelSponsorshipPayload", - "description": "Autogenerated return type of CancelSponsorship", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsTier", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeUserStatusInput", - "description": "Autogenerated input type of ChangeUserStatus", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "emoji", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "message", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "limitedAvailability", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "expiresAt", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ChangeUserStatusPayload", - "description": "Autogenerated return type of ChangeUserStatus", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "status", - "args": [], - "type": {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckAnnotation", - "description": "A single check annotation.", - "fields": [ - { - "name": "annotationLevel", - "args": [], - "type": {"kind": "ENUM", "name": "CheckAnnotationLevel", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blobUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "location", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckAnnotationSpan", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rawDetails", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckAnnotationConnection", - "description": "The connection type for CheckAnnotation.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckAnnotationEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckAnnotation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckAnnotationData", - "description": "Information from a check run analysis to specific lines of code.", - "fields": None, - "inputFields": [ - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "location", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CheckAnnotationRange", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "annotationLevel", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CheckAnnotationLevel", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "message", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "rawDetails", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckAnnotationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CheckAnnotation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "CheckAnnotationLevel", - "description": "Represents an annotation's information level.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, - {"name": "NOTICE", "isDeprecated": False, "deprecationReason": None}, - {"name": "WARNING", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckAnnotationPosition", - "description": "A character position in a check annotation.", - "fields": [ - { - "name": "column", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "line", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckAnnotationRange", - "description": "Information from a check run analysis to specific lines of code.", - "fields": None, - "inputFields": [ - { - "name": "startLine", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "startColumn", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "endLine", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "endColumn", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckAnnotationSpan", - "description": "An inclusive pair of positions for a check annotation.", - "fields": [ - { - "name": "end", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckAnnotationPosition", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "start", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckAnnotationPosition", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "CheckConclusionState", - "description": "The possible states for a check suite or run conclusion.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ACTION_REQUIRED", "isDeprecated": False, "deprecationReason": None}, - {"name": "TIMED_OUT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CANCELLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "NEUTRAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "SKIPPED", "isDeprecated": False, "deprecationReason": None}, - {"name": "STARTUP_FAILURE", "isDeprecated": False, "deprecationReason": None}, - {"name": "STALE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckRun", - "description": "A check run.", - "fields": [ - { - "name": "annotations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "CheckAnnotationConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "checkSuite", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "completedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "conclusion", - "args": [], - "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployment", - "args": [], - "type": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "detailsUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "externalId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isRequired", - "args": [ - { - "name": "pullRequestId", - "description": "The id of the pull request this is required for", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestNumber", - "description": "The number of the pull request this is required for", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pendingDeploymentRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "DeploymentRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permalink", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "status", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "steps", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "number", - "description": "Step number", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "CheckStepConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "summary", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "text", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "RequirableByPullRequest", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckRunAction", - "description": "Possible further actions the integrator can perform.", - "fields": None, - "inputFields": [ - { - "name": "label", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "description", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "identifier", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckRunConnection", - "description": "The connection type for CheckRun.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckRunEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckRunEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckRunFilter", - "description": "The filters that are available when fetching check runs.", - "fields": None, - "inputFields": [ - { - "name": "checkType", - "type": {"kind": "ENUM", "name": "CheckRunType", "ofType": None}, - "defaultValue": None, - }, - { - "name": "appId", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "checkName", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "status", - "type": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "statuses", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "conclusions", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckRunOutput", - "description": "Descriptive details about the check run.", - "fields": None, - "inputFields": [ - { - "name": "title", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "summary", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "text", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "annotations", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CheckAnnotationData", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "images", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CheckRunOutputImage", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckRunOutputImage", - "description": "Images attached to the check run output displayed in the GitHub pull request UI.", - "fields": None, - "inputFields": [ - { - "name": "alt", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "imageUrl", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "caption", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "CheckRunState", - "description": "The possible states of a check run in a status rollup.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ACTION_REQUIRED", "isDeprecated": False, "deprecationReason": None}, - {"name": "CANCELLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "NEUTRAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, - {"name": "SKIPPED", "isDeprecated": False, "deprecationReason": None}, - {"name": "STALE", "isDeprecated": False, "deprecationReason": None}, - {"name": "STARTUP_FAILURE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "TIMED_OUT", "isDeprecated": False, "deprecationReason": None}, - {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckRunStateCount", - "description": "Represents a count of the state of a check run.", - "fields": [ - { - "name": "count", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CheckRunState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "CheckRunType", - "description": "The possible types of check runs.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - {"name": "LATEST", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "CheckStatusState", - "description": "The possible states for a check suite or run status.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "REQUESTED", "isDeprecated": False, "deprecationReason": None}, - {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, - {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckStep", - "description": "A single check step.", - "fields": [ - { - "name": "completedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "conclusion", - "args": [], - "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "externalId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "secondsToCompletion", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "status", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckStepConnection", - "description": "The connection type for CheckStep.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckStepEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckStep", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckStepEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CheckStep", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckSuite", - "description": "A check suite.", - "fields": [ - { - "name": "app", - "args": [], - "type": {"kind": "OBJECT", "name": "App", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "branch", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "checkRuns", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "filterBy", - "description": "Filters the check runs by this type.", - "type": {"kind": "INPUT_OBJECT", "name": "CheckRunFilter", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "CheckRunConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "conclusion", - "args": [], - "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "matchingPullRequests", - "args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "push", - "args": [], - "type": {"kind": "OBJECT", "name": "Push", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "status", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CheckStatusState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "workflowRun", - "args": [], - "type": {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckSuiteAutoTriggerPreference", - "description": "The auto-trigger preferences that are available for check suites.", - "fields": None, - "inputFields": [ - { - "name": "appId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "setting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckSuiteConnection", - "description": "The connection type for CheckSuite.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckSuiteEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CheckSuiteEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CheckSuiteFilter", - "description": "The filters that are available when fetching check suites.", - "fields": None, - "inputFields": [ - { - "name": "appId", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "checkName", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "Claimable", - "description": "An object which can have its data claimed or claim data from another.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "ClearLabelsFromLabelableInput", - "description": "Autogenerated input type of ClearLabelsFromLabelable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labelableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ClearLabelsFromLabelablePayload", - "description": "Autogenerated return type of ClearLabelsFromLabelable", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labelable", - "args": [], - "type": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ClearProjectV2ItemFieldValueInput", - "description": "Autogenerated input type of ClearProjectV2ItemFieldValue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "itemId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "fieldId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ClearProjectV2ItemFieldValuePayload", - "description": "Autogenerated return type of ClearProjectV2ItemFieldValue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2Item", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CloneProjectInput", - "description": "Autogenerated input type of CloneProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "targetOwnerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "sourceId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "includeWorkflows", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "public", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CloneProjectPayload", - "description": "Autogenerated return type of CloneProject", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "jobStatusId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CloneTemplateRepositoryInput", - "description": "Autogenerated input type of CloneTemplateRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "description", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "visibility", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "includeAllBranches", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CloneTemplateRepositoryPayload", - "description": "Autogenerated return type of CloneTemplateRepository", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Closable", - "description": "An object that can be closed", - "fields": [ - { - "name": "closed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanClose", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReopen", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - {"kind": "OBJECT", "name": "Project", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "CloseDiscussionInput", - "description": "Autogenerated input type of CloseDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "discussionId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "reason", - "type": {"kind": "ENUM", "name": "DiscussionCloseReason", "ofType": None}, - "defaultValue": "RESOLVED", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CloseDiscussionPayload", - "description": "Autogenerated return type of CloseDiscussion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CloseIssueInput", - "description": "Autogenerated input type of CloseIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "stateReason", - "type": {"kind": "ENUM", "name": "IssueClosedStateReason", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CloseIssuePayload", - "description": "Autogenerated return type of CloseIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ClosePullRequestInput", - "description": "Autogenerated input type of ClosePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ClosePullRequestPayload", - "description": "Autogenerated return type of ClosePullRequest", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ClosedEvent", - "description": "Represents a 'closed' event on any `Closable`.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Closable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closer", - "args": [], - "type": {"kind": "UNION", "name": "Closer", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stateReason", - "args": [], - "type": {"kind": "ENUM", "name": "IssueStateReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "Closer", - "description": "The object which triggered a `ClosedEvent`.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Commit", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "CodeOfConduct", - "description": "The Code of Conduct for a repository", - "fields": [ - { - "name": "body", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "key", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "CollaboratorAffiliation", - "description": "Collaborators affiliation level with a subject.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OUTSIDE", "isDeprecated": False, "deprecationReason": None}, - {"name": "DIRECT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Comment", - "description": "Represents a comment.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "GistComment", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - ], - }, - { - "kind": "ENUM", - "name": "CommentAuthorAssociation", - "description": "A comment author association with repository.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, - {"name": "MANNEQUIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "COLLABORATOR", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONTRIBUTOR", "isDeprecated": False, "deprecationReason": None}, - {"name": "FIRST_TIME_CONTRIBUTOR", "isDeprecated": False, "deprecationReason": None}, - {"name": "FIRST_TIMER", "isDeprecated": False, "deprecationReason": None}, - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "CommentCannotUpdateReason", - "description": "The possible errors that will prevent a user from updating a comment.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ARCHIVED", "isDeprecated": False, "deprecationReason": None}, - {"name": "INSUFFICIENT_ACCESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "LOCKED", "isDeprecated": False, "deprecationReason": None}, - {"name": "LOGIN_REQUIRED", "isDeprecated": False, "deprecationReason": None}, - {"name": "MAINTENANCE", "isDeprecated": False, "deprecationReason": None}, - {"name": "VERIFIED_EMAIL_REQUIRED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DENIED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommentDeletedEvent", - "description": "Represents a 'comment_deleted' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletedCommentAuthor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Commit", - "description": "Represents a Git commit.", - "fields": [ - { - "name": "abbreviatedOid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "additions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "associatedPullRequests", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests.", - "type": {"kind": "INPUT_OBJECT", "name": "PullRequestOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "author", - "args": [], - "type": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authoredByCommitter", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authoredDate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authors", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GitActorConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blame", - "args": [ - { - "name": "path", - "description": "The file whose Git blame information you want.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Blame", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "changedFiles", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "`changedFiles` will be removed. Use `changedFilesIfAvailable` instead. Removal on 2023-01-01 UTC.", - }, - { - "name": "changedFilesIfAvailable", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "checkSuites", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "filterBy", - "description": "Filters the check suites by this type.", - "type": {"kind": "INPUT_OBJECT", "name": "CheckSuiteFilter", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "CheckSuiteConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "committedDate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "committedViaWeb", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "committer", - "args": [], - "type": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployments", - "args": [ - { - "name": "environments", - "description": "Environments to list deployments for", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for deployments returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "DeploymentOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "DeploymentConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "file", - "args": [ - { - "name": "path", - "description": "The path for the file", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "TreeEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "history", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "path", - "description": "If non-null, filters history to only show commits touching files under this path.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "author", - "description": "If non-null, filters history to only show commits with matching authorship.", - "type": {"kind": "INPUT_OBJECT", "name": "CommitAuthor", "ofType": None}, - "defaultValue": None, - }, - { - "name": "since", - "description": "Allows specifying a beginning time or date for fetching commits.", - "type": {"kind": "SCALAR", "name": "GitTimestamp", "ofType": None}, - "defaultValue": None, - }, - { - "name": "until", - "description": "Allows specifying an ending time or date for fetching commits.", - "type": {"kind": "SCALAR", "name": "GitTimestamp", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitHistoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "messageBody", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "messageBodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "messageHeadline", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "messageHeadlineHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "onBehalfOf", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parents", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pushedDate", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": True, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signature", - "args": [], - "type": {"kind": "INTERFACE", "name": "GitSignature", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "status", - "args": [], - "type": {"kind": "OBJECT", "name": "Status", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "statusCheckRollup", - "args": [], - "type": {"kind": "OBJECT", "name": "StatusCheckRollup", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "submodules", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SubmoduleConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tarballUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tree", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Tree", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "treeResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "treeUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSubscribe", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerSubscription", - "args": [], - "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "zipballUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitAuthor", - "description": "Specifies an author for filtering Git commits.", - "fields": None, - "inputFields": [ - {"name": "id", "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, "defaultValue": None}, - { - "name": "emails", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitAuthorEmailPatternParameters", - "description": "Parameters to be used for the commit_author_email_pattern rule", - "fields": [ - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "negate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operator", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pattern", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitAuthorEmailPatternParametersInput", - "description": "Parameters to be used for the commit_author_email_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "negate", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "operator", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "pattern", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitComment", - "description": "Represents a comment on a given Commit.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMinimized", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizedReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "position", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMinimize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitCommentConnection", - "description": "The connection type for CommitComment.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitCommentEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitCommentThread", - "description": "A thread of comments on a commit.", - "fields": [ - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "position", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitConnection", - "description": "The connection type for Commit.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitContributionOrder", - "description": "Ordering options for commit contribution connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommitContributionOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "CommitContributionOrderField", - "description": "Properties by which commit contribution connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OCCURRED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMIT_COUNT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitContributionsByRepository", - "description": "This aggregates commits made by a user within one repository.", - "fields": [ - { - "name": "contributions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for commit contributions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "CommitContributionOrder", "ofType": None}, - "defaultValue": "{field: OCCURRED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedCommitContributionConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitHistoryConnection", - "description": "The connection type for Commit.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitMessage", - "description": "A message to include with a new commit", - "fields": None, - "inputFields": [ - { - "name": "headline", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitMessagePatternParameters", - "description": "Parameters to be used for the commit_message_pattern rule", - "fields": [ - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "negate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operator", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pattern", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitMessagePatternParametersInput", - "description": "Parameters to be used for the commit_message_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "negate", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "operator", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "pattern", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CommittableBranch", - "fields": None, - "inputFields": [ - {"name": "id", "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, "defaultValue": None}, - { - "name": "repositoryNameWithOwner", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "branchName", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CommitterEmailPatternParameters", - "description": "Parameters to be used for the committer_email_pattern rule", - "fields": [ - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "negate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operator", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pattern", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CommitterEmailPatternParametersInput", - "description": "Parameters to be used for the committer_email_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "negate", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "operator", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "pattern", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Comparison", - "description": "Represents a comparison between two commit revisions.", - "fields": [ - { - "name": "aheadBy", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "baseTarget", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "behindBy", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ComparisonCommitConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headTarget", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "status", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ComparisonStatus", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ComparisonCommitConnection", - "description": "The connection type for Commit.", - "fields": [ - { - "name": "authorCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ComparisonStatus", - "description": "The status of a git comparison between two refs.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DIVERGED", "isDeprecated": False, "deprecationReason": None}, - {"name": "AHEAD", "isDeprecated": False, "deprecationReason": None}, - {"name": "BEHIND", "isDeprecated": False, "deprecationReason": None}, - {"name": "IDENTICAL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ConnectedEvent", - "description": "Represents a 'connected' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCrossRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "source", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ContributingGuidelines", - "description": "The Contributing Guidelines for a repository.", - "fields": [ - { - "name": "body", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Contribution", - "description": "Represents a contribution a user made on GitHub, such as opening an issue.", - "fields": [ - { - "name": "isRestricted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "occurredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CreatedCommitContribution", "ofType": None}, - {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, - {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, - {"kind": "OBJECT", "name": "CreatedPullRequestReviewContribution", "ofType": None}, - {"kind": "OBJECT", "name": "CreatedRepositoryContribution", "ofType": None}, - {"kind": "OBJECT", "name": "JoinedGitHubContribution", "ofType": None}, - {"kind": "OBJECT", "name": "RestrictedContribution", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ContributionCalendar", - "description": "A calendar of contributions made on GitHub by a user.", - "fields": [ - { - "name": "colors", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isHalloween", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "months", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ContributionCalendarMonth", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalContributions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "weeks", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ContributionCalendarWeek", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ContributionCalendarDay", - "description": "Represents a single day of contributions on GitHub by a user.", - "fields": [ - { - "name": "color", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contributionCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contributionLevel", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ContributionLevel", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "date", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "weekday", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ContributionCalendarMonth", - "description": "A month of contributions in a user's contribution graph.", - "fields": [ - { - "name": "firstDay", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalWeeks", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "year", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ContributionCalendarWeek", - "description": "A week of contributions in a user's contribution graph.", - "fields": [ - { - "name": "contributionDays", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ContributionCalendarDay", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "firstDay", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ContributionLevel", - "description": "Varying levels of contributions from none to many.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - {"name": "FIRST_QUARTILE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SECOND_QUARTILE", "isDeprecated": False, "deprecationReason": None}, - {"name": "THIRD_QUARTILE", "isDeprecated": False, "deprecationReason": None}, - {"name": "FOURTH_QUARTILE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ContributionOrder", - "description": "Ordering options for contribution connections.", - "fields": None, - "inputFields": [ - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ContributionsCollection", - "description": "A contributions collection aggregates contributions such as opened issues and commits created by a user.", - "fields": [ - { - "name": "commitContributionsByRepository", - "args": [ - { - "name": "maxRepositories", - "description": "How many repositories should be included.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "25", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CommitContributionsByRepository", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contributionCalendar", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ContributionCalendar", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contributionYears", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "doesEndInCurrentMonth", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "earliestRestrictedContributionDate", - "args": [], - "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "endedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "firstIssueContribution", - "args": [], - "type": {"kind": "UNION", "name": "CreatedIssueOrRestrictedContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "firstPullRequestContribution", - "args": [], - "type": { - "kind": "UNION", - "name": "CreatedPullRequestOrRestrictedContribution", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "firstRepositoryContribution", - "args": [], - "type": { - "kind": "UNION", - "name": "CreatedRepositoryOrRestrictedContribution", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasActivityInThePast", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasAnyContributions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasAnyRestrictedContributions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSingleDay", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issueContributions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "excludeFirst", - "description": "Should the user's first issue ever be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "excludePopular", - "description": "Should the user's most commented issue be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, - "defaultValue": "{direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedIssueContributionConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issueContributionsByRepository", - "args": [ - { - "name": "maxRepositories", - "description": "How many repositories should be included.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "25", - }, - { - "name": "excludeFirst", - "description": "Should the user's first issue ever be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "excludePopular", - "description": "Should the user's most commented issue be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "IssueContributionsByRepository", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "joinedGitHubContribution", - "args": [], - "type": {"kind": "OBJECT", "name": "JoinedGitHubContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "latestRestrictedContributionDate", - "args": [], - "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mostRecentCollectionWithActivity", - "args": [], - "type": {"kind": "OBJECT", "name": "ContributionsCollection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mostRecentCollectionWithoutActivity", - "args": [], - "type": {"kind": "OBJECT", "name": "ContributionsCollection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "popularIssueContribution", - "args": [], - "type": {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "popularPullRequestContribution", - "args": [], - "type": {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestContributions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "excludeFirst", - "description": "Should the user's first pull request ever be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "excludePopular", - "description": "Should the user's most commented pull request be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, - "defaultValue": "{direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestContributionsByRepository", - "args": [ - { - "name": "maxRepositories", - "description": "How many repositories should be included.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "25", - }, - { - "name": "excludeFirst", - "description": "Should the user's first pull request ever be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "excludePopular", - "description": "Should the user's most commented pull request be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestContributionsByRepository", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReviewContributions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, - "defaultValue": "{direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReviewContributionsByRepository", - "args": [ - { - "name": "maxRepositories", - "description": "How many repositories should be included.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "25", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewContributionsByRepository", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryContributions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "excludeFirst", - "description": "Should the user's first repository ever be excluded from the result.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, - "defaultValue": "{direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedRepositoryContributionConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restrictedContributionsCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCommitContributions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalIssueContributions", - "args": [ - { - "name": "excludeFirst", - "description": "Should the user's first issue ever be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "excludePopular", - "description": "Should the user's most commented issue be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalPullRequestContributions", - "args": [ - { - "name": "excludeFirst", - "description": "Should the user's first pull request ever be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "excludePopular", - "description": "Should the user's most commented pull request be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalPullRequestReviewContributions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalRepositoriesWithContributedCommits", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalRepositoriesWithContributedIssues", - "args": [ - { - "name": "excludeFirst", - "description": "Should the user's first issue ever be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "excludePopular", - "description": "Should the user's most commented issue be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalRepositoriesWithContributedPullRequestReviews", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalRepositoriesWithContributedPullRequests", - "args": [ - { - "name": "excludeFirst", - "description": "Should the user's first pull request ever be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "excludePopular", - "description": "Should the user's most commented pull request be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalRepositoryContributions", - "args": [ - { - "name": "excludeFirst", - "description": "Should the user's first repository ever be excluded from this count.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ConvertProjectCardNoteToIssueInput", - "description": "Autogenerated input type of ConvertProjectCardNoteToIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectCardId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ConvertProjectCardNoteToIssuePayload", - "description": "Autogenerated return type of ConvertProjectCardNoteToIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectCard", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ConvertPullRequestToDraftInput", - "description": "Autogenerated input type of ConvertPullRequestToDraft", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ConvertPullRequestToDraftPayload", - "description": "Autogenerated return type of ConvertPullRequestToDraft", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ConvertToDraftEvent", - "description": "Represents a 'convert_to_draft' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ConvertedNoteToIssueEvent", - "description": "Represents a 'converted_note_to_issue' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectCard", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectColumnName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ConvertedToDiscussionEvent", - "description": "Represents a 'converted_to_discussion' event on a given issue.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CopyProjectV2Input", - "description": "Autogenerated input type of CopyProjectV2", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "includeDraftIssues", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CopyProjectV2Payload", - "description": "Autogenerated return type of CopyProjectV2", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateAttributionInvitationInput", - "description": "Autogenerated input type of CreateAttributionInvitation", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "sourceId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "targetId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateAttributionInvitationPayload", - "description": "Autogenerated return type of CreateAttributionInvitation", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "source", - "args": [], - "type": {"kind": "UNION", "name": "Claimable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "target", - "args": [], - "type": {"kind": "UNION", "name": "Claimable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateBranchProtectionRuleInput", - "description": "Autogenerated input type of CreateBranchProtectionRule", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "pattern", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "requiresApprovingReviews", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiredApprovingReviewCount", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresCommitSignatures", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresLinearHistory", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "blocksCreations", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "allowsForcePushes", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "allowsDeletions", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isAdminEnforced", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresStatusChecks", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresStrictStatusChecks", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresCodeOwnerReviews", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "dismissesStaleReviews", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "restrictsReviewDismissals", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "reviewDismissalActorIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "bypassPullRequestActorIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "bypassForcePushActorIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "restrictsPushes", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pushActorIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "requiredStatusCheckContexts", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "requiredStatusChecks", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusCheckInput", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "requiresDeployments", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiredDeploymentEnvironments", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "requiresConversationResolution", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requireLastPushApproval", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "lockBranch", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "lockAllowsFetchAndMerge", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateBranchProtectionRulePayload", - "description": "Autogenerated return type of CreateBranchProtectionRule", - "fields": [ - { - "name": "branchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateCheckRunInput", - "description": "Autogenerated input type of CreateCheckRun", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "headSha", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "detailsUrl", - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "defaultValue": None, - }, - { - "name": "externalId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "status", - "type": {"kind": "ENUM", "name": "RequestableCheckStatusState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "startedAt", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "conclusion", - "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "completedAt", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "output", - "type": {"kind": "INPUT_OBJECT", "name": "CheckRunOutput", "ofType": None}, - "defaultValue": None, - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CheckRunAction", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateCheckRunPayload", - "description": "Autogenerated return type of CreateCheckRun", - "fields": [ - { - "name": "checkRun", - "args": [], - "type": {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateCheckSuiteInput", - "description": "Autogenerated input type of CreateCheckSuite", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "headSha", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateCheckSuitePayload", - "description": "Autogenerated return type of CreateCheckSuite", - "fields": [ - { - "name": "checkSuite", - "args": [], - "type": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateCommitOnBranchInput", - "description": "Autogenerated input type of CreateCommitOnBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "branch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CommittableBranch", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "fileChanges", - "type": {"kind": "INPUT_OBJECT", "name": "FileChanges", "ofType": None}, - "defaultValue": None, - }, - { - "name": "message", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CommitMessage", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "expectedHeadOid", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateCommitOnBranchPayload", - "description": "Autogenerated return type of CreateCommitOnBranch", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateDeploymentPayload", - "description": "Autogenerated return type of CreateDeployment", - "fields": [ - { - "name": "autoMerged", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployment", - "args": [], - "type": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateDeploymentStatusInput", - "description": "Autogenerated input type of CreateDeploymentStatus", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "deploymentId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "state", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DeploymentStatusState", "ofType": None}, - }, - "defaultValue": None, - }, - {"name": "description", "type": {"kind": "SCALAR", "name": "String", "ofType": None}}, - { - "name": "environment", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - {"name": "environmentUrl", "type": {"kind": "SCALAR", "name": "String", "ofType": None}}, - { - "name": "autoInactive", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - {"name": "logUrl", "type": {"kind": "SCALAR", "name": "String", "ofType": None}}, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateDeploymentStatusPayload", - "description": "Autogenerated return type of CreateDeploymentStatus", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deploymentStatus", - "args": [], - "type": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateDiscussionInput", - "description": "Autogenerated input type of CreateDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "categoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateDiscussionPayload", - "description": "Autogenerated return type of CreateDiscussion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateEnterpriseOrganizationInput", - "description": "Autogenerated input type of CreateEnterpriseOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "login", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "profileName", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "billingEmail", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "adminLogins", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateEnterpriseOrganizationPayload", - "description": "Autogenerated return type of CreateEnterpriseOrganization", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateEnvironmentInput", - "description": "Autogenerated input type of CreateEnvironment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateEnvironmentPayload", - "description": "Autogenerated return type of CreateEnvironment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environment", - "args": [], - "type": {"kind": "OBJECT", "name": "Environment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateIpAllowListEntryInput", - "description": "Autogenerated input type of CreateIpAllowListEntry", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "allowListValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isActive", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateIpAllowListEntryPayload", - "description": "Autogenerated return type of CreateIpAllowListEntry", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListEntry", - "args": [], - "type": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateIssueInput", - "description": "Autogenerated input type of CreateIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "assigneeIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "milestoneId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labelIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "projectIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "issueTemplate", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateIssuePayload", - "description": "Autogenerated return type of CreateIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateLabelInput", - "description": "Autogenerated input type of CreateLabel", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "color", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "description", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateLabelPayload", - "description": "Autogenerated return type of CreateLabel", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "label", - "args": [], - "type": {"kind": "OBJECT", "name": "Label", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateLinkedBranchInput", - "description": "Autogenerated input type of CreateLinkedBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "oid", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateLinkedBranchPayload", - "description": "Autogenerated return type of CreateLinkedBranch", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "linkedBranch", - "args": [], - "type": {"kind": "OBJECT", "name": "LinkedBranch", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateMigrationSourceInput", - "description": "Autogenerated input type of CreateMigrationSource", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "url", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "accessToken", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "type", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MigrationSourceType", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "githubPat", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateMigrationSourcePayload", - "description": "Autogenerated return type of CreateMigrationSource", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "migrationSource", - "args": [], - "type": {"kind": "OBJECT", "name": "MigrationSource", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateProjectInput", - "description": "Autogenerated input type of CreateProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "template", - "type": {"kind": "ENUM", "name": "ProjectTemplate", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateProjectPayload", - "description": "Autogenerated return type of CreateProject", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateProjectV2FieldInput", - "description": "Autogenerated input type of CreateProjectV2Field", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "dataType", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2CustomFieldType", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "singleSelectOptions", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2SingleSelectFieldOptionInput", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateProjectV2FieldPayload", - "description": "Autogenerated return type of CreateProjectV2Field", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2Field", - "args": [], - "type": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateProjectV2Input", - "description": "Autogenerated input type of CreateProjectV2", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "teamId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateProjectV2Payload", - "description": "Autogenerated return type of CreateProjectV2", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreatePullRequestInput", - "description": "Autogenerated input type of CreatePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "baseRefName", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "headRefName", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "headRepositoryId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "title", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "maintainerCanModify", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "draft", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatePullRequestPayload", - "description": "Autogenerated return type of CreatePullRequest", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateRefInput", - "description": "Autogenerated input type of CreateRef", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "oid", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateRefPayload", - "description": "Autogenerated return type of CreateRef", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateRepositoryInput", - "description": "Autogenerated input type of CreateRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "description", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "visibility", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "template", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "homepageUrl", - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasWikiEnabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "hasIssuesEnabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "teamId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateRepositoryPayload", - "description": "Autogenerated return type of CreateRepository", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateRepositoryRulesetInput", - "description": "Autogenerated input type of CreateRepositoryRuleset", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sourceId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "target", - "type": {"kind": "ENUM", "name": "RepositoryRulesetTarget", "ofType": None}, - "defaultValue": None, - }, - { - "name": "rules", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "RepositoryRuleInput", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "conditions", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleConditionsInput", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "enforcement", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RuleEnforcement", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "bypassActors", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRulesetBypassActorInput", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateRepositoryRulesetPayload", - "description": "Autogenerated return type of CreateRepositoryRuleset", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ruleset", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorsListingInput", - "description": "Autogenerated input type of CreateSponsorsListing", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "fiscalHostLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "fiscallyHostedProjectProfileUrl", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "billingCountryOrRegionCode", - "type": {"kind": "ENUM", "name": "SponsorsCountryOrRegionCode", "ofType": None}, - "defaultValue": None, - }, - { - "name": "residenceCountryOrRegionCode", - "type": {"kind": "ENUM", "name": "SponsorsCountryOrRegionCode", "ofType": None}, - "defaultValue": None, - }, - { - "name": "contactEmail", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "fullDescription", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateSponsorsListingPayload", - "description": "Autogenerated return type of CreateSponsorsListing", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsListing", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorsTierInput", - "description": "Autogenerated input type of CreateSponsorsTier", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "amount", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "isRecurring", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "repositoryId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryOwnerLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryName", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "welcomeMessage", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "description", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "publish", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateSponsorsTierPayload", - "description": "Autogenerated return type of CreateSponsorsTier", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsTier", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorshipInput", - "description": "Autogenerated input type of CreateSponsorship", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "tierId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "amount", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isRecurring", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "receiveEmails", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "privacyLevel", - "type": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, - "defaultValue": "PUBLIC", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateSponsorshipPayload", - "description": "Autogenerated return type of CreateSponsorship", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorship", - "args": [], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorshipsInput", - "description": "Autogenerated input type of CreateSponsorships", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorLogin", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "sponsorships", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "BulkSponsorship", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "receiveEmails", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "privacyLevel", - "type": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, - "defaultValue": "PUBLIC", - }, - { - "name": "recurring", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateSponsorshipsPayload", - "description": "Autogenerated return type of CreateSponsorships", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorables", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTeamDiscussionCommentInput", - "description": "Autogenerated input type of CreateTeamDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "discussionId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateTeamDiscussionCommentPayload", - "description": "Autogenerated return type of CreateTeamDiscussionComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamDiscussionComment", - "args": [], - "type": {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTeamDiscussionInput", - "description": "Autogenerated input type of CreateTeamDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "teamId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "private", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateTeamDiscussionPayload", - "description": "Autogenerated return type of CreateTeamDiscussion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamDiscussion", - "args": [], - "type": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateUserListInput", - "description": "Autogenerated input type of CreateUserList", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "description", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isPrivate", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreateUserListPayload", - "description": "Autogenerated return type of CreateUserList", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "list", - "args": [], - "type": {"kind": "OBJECT", "name": "UserList", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedCommitContribution", - "description": "Represents the contribution a user made by committing to a repository.", - "fields": [ - { - "name": "commitCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isRestricted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "occurredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedCommitContributionConnection", - "description": "The connection type for CreatedCommitContribution.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CreatedCommitContributionEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CreatedCommitContribution", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedCommitContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CreatedCommitContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedIssueContribution", - "description": "Represents the contribution a user made on GitHub by opening an issue.", - "fields": [ - { - "name": "isRestricted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "occurredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedIssueContributionConnection", - "description": "The connection type for CreatedIssueContribution.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CreatedIssueContributionEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedIssueContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "CreatedIssueOrRestrictedContribution", - "description": "Represents either a issue the viewer can access or a restricted contribution.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CreatedIssueContribution", "ofType": None}, - {"kind": "OBJECT", "name": "RestrictedContribution", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestContribution", - "description": "Represents the contribution a user made on GitHub by opening a pull request.", - "fields": [ - { - "name": "isRestricted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "occurredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionConnection", - "description": "The connection type for CreatedPullRequestContribution.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "CreatedPullRequestOrRestrictedContribution", - "description": "Represents either a pull request the viewer can access or a restricted contribution.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CreatedPullRequestContribution", "ofType": None}, - {"kind": "OBJECT", "name": "RestrictedContribution", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContribution", - "description": "Represents the contribution a user made by leaving a review on a pull request.", - "fields": [ - { - "name": "isRestricted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "occurredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReview", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionConnection", - "description": "The connection type for CreatedPullRequestReviewContribution.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContribution", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CreatedPullRequestReviewContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedRepositoryContribution", - "description": "Represents the contribution a user made on GitHub by creating a repository.", - "fields": [ - { - "name": "isRestricted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "occurredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedRepositoryContributionConnection", - "description": "The connection type for CreatedRepositoryContribution.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedRepositoryContributionEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CreatedRepositoryContribution", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "CreatedRepositoryContributionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "CreatedRepositoryContribution", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "CreatedRepositoryOrRestrictedContribution", - "description": "Represents either a repository the viewer can access or a restricted contribution.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CreatedRepositoryContribution", "ofType": None}, - {"kind": "OBJECT", "name": "RestrictedContribution", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "CrossReferencedEvent", - "description": "Represents a mention made by one issue or pull request to another.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCrossRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "referencedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "source", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "target", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "willCloseTarget", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "Date", - "description": "An ISO-8601 encoded date string.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "DateTime", - "description": "An ISO-8601 encoded UTC date string.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeclineTopicSuggestionInput", - "description": "Autogenerated input type of DeclineTopicSuggestion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "reason", - "type": {"kind": "ENUM", "name": "TopicSuggestionDeclineReason", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeclineTopicSuggestionPayload", - "description": "Autogenerated return type of DeclineTopicSuggestion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topic", - "args": [], - "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, - "isDeprecated": True, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DefaultRepositoryPermissionField", - "description": "The possible base permissions for repositories.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - {"name": "READ", "isDeprecated": False, "deprecationReason": None}, - {"name": "WRITE", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Deletable", - "description": "Entities that can be deleted.", - "fields": [ - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "GistComment", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteBranchProtectionRuleInput", - "description": "Autogenerated input type of DeleteBranchProtectionRule", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "branchProtectionRuleId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteBranchProtectionRulePayload", - "description": "Autogenerated return type of DeleteBranchProtectionRule", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteDeploymentInput", - "description": "Autogenerated input type of DeleteDeployment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteDeploymentPayload", - "description": "Autogenerated return type of DeleteDeployment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteDiscussionCommentInput", - "description": "Autogenerated input type of DeleteDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteDiscussionCommentPayload", - "description": "Autogenerated return type of DeleteDiscussionComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comment", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteDiscussionInput", - "description": "Autogenerated input type of DeleteDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteDiscussionPayload", - "description": "Autogenerated return type of DeleteDiscussion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteEnvironmentInput", - "description": "Autogenerated input type of DeleteEnvironment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteEnvironmentPayload", - "description": "Autogenerated return type of DeleteEnvironment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteIpAllowListEntryInput", - "description": "Autogenerated input type of DeleteIpAllowListEntry", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ipAllowListEntryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteIpAllowListEntryPayload", - "description": "Autogenerated return type of DeleteIpAllowListEntry", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListEntry", - "args": [], - "type": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteIssueCommentInput", - "description": "Autogenerated input type of DeleteIssueComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteIssueCommentPayload", - "description": "Autogenerated return type of DeleteIssueComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteIssueInput", - "description": "Autogenerated input type of DeleteIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteIssuePayload", - "description": "Autogenerated return type of DeleteIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteLabelInput", - "description": "Autogenerated input type of DeleteLabel", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteLabelPayload", - "description": "Autogenerated return type of DeleteLabel", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteLinkedBranchInput", - "description": "Autogenerated input type of DeleteLinkedBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "linkedBranchId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteLinkedBranchPayload", - "description": "Autogenerated return type of DeleteLinkedBranch", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeletePackageVersionInput", - "description": "Autogenerated input type of DeletePackageVersion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "packageVersionId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeletePackageVersionPayload", - "description": "Autogenerated return type of DeletePackageVersion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "success", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectCardInput", - "description": "Autogenerated input type of DeleteProjectCard", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "cardId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteProjectCardPayload", - "description": "Autogenerated return type of DeleteProjectCard", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "column", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletedCardId", - "args": [], - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectColumnInput", - "description": "Autogenerated input type of DeleteProjectColumn", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "columnId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteProjectColumnPayload", - "description": "Autogenerated return type of DeleteProjectColumn", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletedColumnId", - "args": [], - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectInput", - "description": "Autogenerated input type of DeleteProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteProjectPayload", - "description": "Autogenerated return type of DeleteProject", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2FieldInput", - "description": "Autogenerated input type of DeleteProjectV2Field", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "fieldId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteProjectV2FieldPayload", - "description": "Autogenerated return type of DeleteProjectV2Field", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2Field", - "args": [], - "type": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2Input", - "description": "Autogenerated input type of DeleteProjectV2", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2ItemInput", - "description": "Autogenerated input type of DeleteProjectV2Item", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "itemId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteProjectV2ItemPayload", - "description": "Autogenerated return type of DeleteProjectV2Item", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletedItemId", - "args": [], - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteProjectV2Payload", - "description": "Autogenerated return type of DeleteProjectV2", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2WorkflowInput", - "description": "Autogenerated input type of DeleteProjectV2Workflow", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "workflowId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteProjectV2WorkflowPayload", - "description": "Autogenerated return type of DeleteProjectV2Workflow", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletedWorkflowId", - "args": [], - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeletePullRequestReviewCommentInput", - "description": "Autogenerated input type of DeletePullRequestReviewComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeletePullRequestReviewCommentPayload", - "description": "Autogenerated return type of DeletePullRequestReviewComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReview", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReviewComment", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeletePullRequestReviewInput", - "description": "Autogenerated input type of DeletePullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeletePullRequestReviewPayload", - "description": "Autogenerated return type of DeletePullRequestReview", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReview", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteRefInput", - "description": "Autogenerated input type of DeleteRef", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "refId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteRefPayload", - "description": "Autogenerated return type of DeleteRef", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteRepositoryRulesetInput", - "description": "Autogenerated input type of DeleteRepositoryRuleset", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryRulesetId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteRepositoryRulesetPayload", - "description": "Autogenerated return type of DeleteRepositoryRuleset", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamDiscussionCommentInput", - "description": "Autogenerated input type of DeleteTeamDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteTeamDiscussionCommentPayload", - "description": "Autogenerated return type of DeleteTeamDiscussionComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamDiscussionInput", - "description": "Autogenerated input type of DeleteTeamDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteTeamDiscussionPayload", - "description": "Autogenerated return type of DeleteTeamDiscussion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteUserListInput", - "description": "Autogenerated input type of DeleteUserList", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "listId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteUserListPayload", - "description": "Autogenerated return type of DeleteUserList", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeleteVerifiableDomainInput", - "description": "Autogenerated input type of DeleteVerifiableDomain", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeleteVerifiableDomainPayload", - "description": "Autogenerated return type of DeleteVerifiableDomain", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": {"kind": "UNION", "name": "VerifiableDomainOwner", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DemilestonedEvent", - "description": "Represents a 'demilestoned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "milestoneTitle", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "MilestoneItem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DependabotUpdate", - "description": "A Dependabot Update for a dependency in a repository", - "fields": [ - { - "name": "error", - "args": [], - "type": {"kind": "OBJECT", "name": "DependabotUpdateError", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DependabotUpdateError", - "description": "An error produced from a Dependabot Update", - "fields": [ - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "errorType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DependencyGraphDependency", - "description": "A dependency manifest entry", - "fields": [ - { - "name": "hasDependencies", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "packageLabel", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "`packageLabel` will be removed. Use normalized `packageName` field instead. Removal on 2022-10-01 UTC.", - }, - { - "name": "packageManager", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "packageName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requirements", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DependencyGraphDependencyConnection", - "description": "The connection type for DependencyGraphDependency.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DependencyGraphDependencyEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DependencyGraphDependency", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DependencyGraphDependencyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DependencyGraphDependency", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DependencyGraphEcosystem", - "description": "The possible ecosystems of a dependency graph package.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "RUBYGEMS", "isDeprecated": False, "deprecationReason": None}, - {"name": "NPM", "isDeprecated": False, "deprecationReason": None}, - {"name": "PIP", "isDeprecated": False, "deprecationReason": None}, - {"name": "MAVEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "NUGET", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMPOSER", "isDeprecated": False, "deprecationReason": None}, - {"name": "GO", "isDeprecated": False, "deprecationReason": None}, - {"name": "ACTIONS", "isDeprecated": False, "deprecationReason": None}, - {"name": "RUST", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUB", "isDeprecated": False, "deprecationReason": None}, - {"name": "SWIFT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DependencyGraphManifest", - "description": "Dependency manifest for a repository", - "fields": [ - { - "name": "blobPath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dependencies", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "DependencyGraphDependencyConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dependenciesCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "exceedsMaxSize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "filename", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parseable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DependencyGraphManifestConnection", - "description": "The connection type for DependencyGraphManifest.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DependencyGraphManifestEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DependencyGraphManifest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DependencyGraphManifestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DependencyGraphManifest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeployKey", - "description": "A repository deploy key.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "key", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "readOnly", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "verified", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeployKeyConnection", - "description": "The connection type for DeployKey.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeployKeyEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeployKey", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeployKeyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DeployKey", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeployedEvent", - "description": "Represents a 'deployed' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployment", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Deployment", - "description": "Represents triggered deployment instance.", - "fields": [ - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitOid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environment", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "latestEnvironment", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "latestStatus", - "args": [], - "type": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "originalEnvironment", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "payload", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": {"kind": "ENUM", "name": "DeploymentState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "statuses", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "DeploymentStatusConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "task", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentConnection", - "description": "The connection type for Deployment.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentEnvironmentChangedEvent", - "description": "Represents a 'deployment_environment_changed' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deploymentStatus", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DeploymentOrder", - "description": "Ordering options for deployment connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DeploymentOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DeploymentOrderField", - "description": "Properties by which deployment connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentProtectionRule", - "description": "A protection rule.", - "fields": [ - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "preventSelfReview", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentReviewerConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "timeout", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "type", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DeploymentProtectionRuleType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentProtectionRuleConnection", - "description": "The connection type for DeploymentProtectionRule.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentProtectionRuleEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentProtectionRule", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentProtectionRuleEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DeploymentProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DeploymentProtectionRuleType", - "description": "The possible protection rule types.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "REQUIRED_REVIEWERS", "isDeprecated": False, "deprecationReason": None}, - {"name": "WAIT_TIMER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentRequest", - "description": "A request to deploy a workflow run to an environment.", - "fields": [ - { - "name": "currentUserCanApprove", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environment", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Environment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentReviewerConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "waitTimer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "waitTimerStartedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentRequestConnection", - "description": "The connection type for DeploymentRequest.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentRequestEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentRequestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DeploymentRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentReview", - "description": "A deployment review.", - "fields": [ - { - "name": "comment", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnvironmentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DeploymentReviewState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentReviewConnection", - "description": "The connection type for DeploymentReview.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentReviewEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentReview", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentReviewEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DeploymentReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DeploymentReviewState", - "description": "The possible states for a deployment review.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "APPROVED", "isDeprecated": False, "deprecationReason": None}, - {"name": "REJECTED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "DeploymentReviewer", - "description": "Users and teams.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Team", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "DeploymentReviewerConnection", - "description": "The connection type for DeploymentReviewer.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentReviewerEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "DeploymentReviewer", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentReviewerEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "DeploymentReviewer", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DeploymentState", - "description": "The possible states in which a deployment can be.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ABANDONED", "isDeprecated": False, "deprecationReason": None}, - {"name": "ACTIVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "DESTROYED", "isDeprecated": False, "deprecationReason": None}, - {"name": "ERROR", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, - {"name": "INACTIVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentStatus", - "description": "Describes the status of a given deployment attempt.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployment", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environment", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environmentUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "logUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DeploymentStatusState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentStatusConnection", - "description": "The connection type for DeploymentStatus.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentStatusEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DeploymentStatusEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DeploymentStatusState", - "description": "The possible states for a deployment status.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, - {"name": "INACTIVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "ERROR", "isDeprecated": False, "deprecationReason": None}, - {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DequeuePullRequestInput", - "description": "Autogenerated input type of DequeuePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DequeuePullRequestPayload", - "description": "Autogenerated return type of DequeuePullRequest", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeQueueEntry", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DiffSide", - "description": "The possible sides of a diff.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "LEFT", "isDeprecated": False, "deprecationReason": None}, - {"name": "RIGHT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DisablePullRequestAutoMergeInput", - "description": "Autogenerated input type of DisablePullRequestAutoMerge", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DisablePullRequestAutoMergePayload", - "description": "Autogenerated return type of DisablePullRequestAutoMerge", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DisconnectedEvent", - "description": "Represents a 'disconnected' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCrossRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "source", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Discussion", - "description": "A discussion in a repository.", - "fields": [ - { - "name": "activeLockReason", - "args": [], - "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "answer", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "answerChosenAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "answerChosenBy", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "category", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isAnswered", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labels", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "locked", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "poll", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionPoll", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stateReason", - "args": [], - "type": {"kind": "ENUM", "name": "DiscussionStateReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "upvoteCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanClose", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReopen", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSubscribe", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpvote", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasUpvoted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerSubscription", - "args": [], - "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Closable", "ofType": None}, - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, - {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "Votable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionCategory", - "description": "A category for discussions in a repository.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "emoji", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "emojiHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isAnswerable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "slug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionCategoryConnection", - "description": "The connection type for DiscussionCategory.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCategoryEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionCategoryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DiscussionCloseReason", - "description": "The possible reasons for closing a discussion.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "RESOLVED", "isDeprecated": False, "deprecationReason": None}, - {"name": "OUTDATED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DUPLICATE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionComment", - "description": "A comment on a discussion.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isAnswer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMinimized", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizedReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "replies", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "replyTo", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "upvoteCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMarkAsAnswer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMinimize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUnmarkAsAnswer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpvote", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasUpvoted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - {"kind": "INTERFACE", "name": "Votable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionCommentConnection", - "description": "The connection type for DiscussionComment.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCommentEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionConnection", - "description": "The connection type for Discussion.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DiscussionOrder", - "description": "Ways in which lists of discussions can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DiscussionOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DiscussionOrderField", - "description": "Properties by which discussion connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionPoll", - "description": "A poll for a discussion.", - "fields": [ - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "options", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "How to order the options for the discussion poll.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DiscussionPollOptionOrder", - "ofType": None, - }, - "defaultValue": "{field: AUTHORED_ORDER, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "DiscussionPollOptionConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "question", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalVoteCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanVote", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasVoted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionPollOption", - "description": "An option for a discussion poll.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "option", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "poll", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionPoll", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalVoteCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasVoted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionPollOptionConnection", - "description": "The connection type for DiscussionPollOption.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionPollOptionEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionPollOption", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DiscussionPollOptionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionPollOption", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DiscussionPollOptionOrder", - "description": "Ordering options for discussion poll option connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DiscussionPollOptionOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DiscussionPollOptionOrderField", - "description": "Properties by which discussion poll option connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "AUTHORED_ORDER", "isDeprecated": False, "deprecationReason": None}, - {"name": "VOTE_COUNT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DiscussionState", - "description": "The possible states of a discussion.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DiscussionStateReason", - "description": "The possible state reasons of a discussion.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "RESOLVED", "isDeprecated": False, "deprecationReason": None}, - {"name": "OUTDATED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DUPLICATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REOPENED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DismissPullRequestReviewInput", - "description": "Autogenerated input type of DismissPullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "message", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DismissPullRequestReviewPayload", - "description": "Autogenerated return type of DismissPullRequestReview", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReview", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "DismissReason", - "description": "The possible reasons that a Dependabot alert was dismissed.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "FIX_STARTED", "isDeprecated": False, "deprecationReason": None}, - {"name": "NO_BANDWIDTH", "isDeprecated": False, "deprecationReason": None}, - {"name": "TOLERABLE_RISK", "isDeprecated": False, "deprecationReason": None}, - {"name": "INACCURATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "NOT_USED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DismissRepositoryVulnerabilityAlertInput", - "description": "Autogenerated input type of DismissRepositoryVulnerabilityAlert", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryVulnerabilityAlertId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "dismissReason", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DismissReason", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DismissRepositoryVulnerabilityAlertPayload", - "description": "Autogenerated return type of DismissRepositoryVulnerabilityAlert", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryVulnerabilityAlert", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "DraftIssue", - "description": "A draft issue within a project.", - "fields": [ - { - "name": "assignees", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2Items", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsV2", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DraftPullRequestReviewComment", - "description": "Specifies a review comment to be left with a Pull Request Review.", - "fields": None, - "inputFields": [ - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "position", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "DraftPullRequestReviewThread", - "description": "Specifies a review comment thread to be left with a Pull Request Review.", - "fields": None, - "inputFields": [ - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "line", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "side", - "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, - "defaultValue": "RIGHT", - }, - { - "name": "startLine", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "startSide", - "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, - "defaultValue": "RIGHT", - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnablePullRequestAutoMergeInput", - "description": "Autogenerated input type of EnablePullRequestAutoMerge", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "commitHeadline", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "commitBody", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "mergeMethod", - "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, - "defaultValue": "MERGE", - }, - { - "name": "authorEmail", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "expectedHeadOid", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnablePullRequestAutoMergePayload", - "description": "Autogenerated return type of EnablePullRequestAutoMerge", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnqueuePullRequestInput", - "description": "Autogenerated input type of EnqueuePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "jump", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "expectedHeadOid", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnqueuePullRequestPayload", - "description": "Autogenerated return type of EnqueuePullRequest", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeQueueEntry", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Enterprise", - "description": "An account to manage multiple organizations with consolidated policy and billing.", - "fields": [ - { - "name": "announcement", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "announcementExpiresAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "announcementUserDismissible", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "billingEmail", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "billingInfo", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseBillingInfo", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "descriptionHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "location", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "members", - "args": [ - { - "name": "organizationLogins", - "description": "Only return members within the organizations with these logins", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for members returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseMemberOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "role", - "description": "The role of the user in the enterprise organization or server.", - "type": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "deployment", - "description": "Only return members within the selected GitHub Enterprise deployment", - "type": {"kind": "ENUM", "name": "EnterpriseUserDeployment", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasTwoFactorEnabled", - "description": "Only return members with this two-factor authentication status. Does not include members who only have an account on a GitHub Enterprise Server instance.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseMemberConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizations", - "args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "viewerOrganizationRole", - "description": "The viewer's role in an organization.", - "type": {"kind": "ENUM", "name": "RoleInOrganization", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ownerInfo", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseOwnerInfo", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "slug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerIsAdmin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "websiteUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AnnouncementBanner", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseAdministratorEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorEdge", - "description": "A User who is an administrator of an enterprise.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "role", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "description": "An invitation for a user to become an owner or billing manager of an enterprise.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitee", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "inviter", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "role", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitationConnection", - "description": "The connection type for EnterpriseAdministratorInvitation.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitationEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitation", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseAdministratorInvitationOrder", - "description": "Ordering options for enterprise administrator invitation connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseAdministratorInvitationOrderField", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseAdministratorInvitationOrderField", - "description": "Properties by which enterprise administrator invitation connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "description": "The possible administrator roles in an enterprise account.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, - {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", - "description": "The possible values for the enterprise allow private repository forking policy value.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ENTERPRISE_ORGANIZATIONS", "isDeprecated": False, "deprecationReason": None}, - {"name": "SAME_ORGANIZATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "SAME_ORGANIZATION_USER_ACCOUNTS", "isDeprecated": False, "deprecationReason": None}, - { - "name": "ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS", - "isDeprecated": False, - "deprecationReason": None, - }, - {"name": "USER_ACCOUNTS", "isDeprecated": False, "deprecationReason": None}, - {"name": "EVERYWHERE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "EnterpriseAuditEntryData", - "description": "Metadata for an audit entry containing enterprise account information.", - "fields": [ - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "EnterpriseBillingInfo", - "description": "Enterprise billing information visible to enterprise billing managers and owners.", - "fields": [ - { - "name": "allLicensableUsersCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assetPacks", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bandwidthQuota", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bandwidthUsage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bandwidthUsagePercentage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "storageQuota", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "storageUsage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "storageUsagePercentage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalAvailableLicenses", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalLicenses", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseConnection", - "description": "The connection type for Enterprise.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseDefaultRepositoryPermissionSettingValue", - "description": "The possible values for the enterprise base repository permission setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NO_POLICY", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "WRITE", "isDeprecated": False, "deprecationReason": None}, - {"name": "READ", "isDeprecated": False, "deprecationReason": None}, - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "description": "The possible values for an enabled/disabled enterprise setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "NO_POLICY", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseEnabledSettingValue", - "description": "The possible values for an enabled/no policy enterprise setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "NO_POLICY", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseFailedInvitationConnection", - "description": "The connection type for OrganizationInvitation.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseFailedInvitationEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalUniqueUserCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseFailedInvitationEdge", - "description": "A failed invitation to be a member in an enterprise organization.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseIdentityProvider", - "description": "An identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", - "fields": [ - { - "name": "digestMethod", - "args": [], - "type": {"kind": "ENUM", "name": "SamlDigestAlgorithm", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "externalIdentities", - "args": [ - { - "name": "membersOnly", - "description": "Filter to external identities with valid org membership only", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "login", - "description": "Filter to external identities with the users login", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userName", - "description": "Filter to external identities with the users userName/NameID attribute", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ExternalIdentityConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "idpCertificate", - "args": [], - "type": {"kind": "SCALAR", "name": "X509Certificate", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issuer", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "recoveryCodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signatureMethod", - "args": [], - "type": {"kind": "ENUM", "name": "SamlSignatureAlgorithm", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ssoUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "EnterpriseMember", - "description": "An object that is a member of an enterprise.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "EnterpriseUserAccount", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "EnterpriseMemberConnection", - "description": "The connection type for EnterpriseMember.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseMemberEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "EnterpriseMember", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseMemberEdge", - "description": "A User who is a member of an enterprise through one or more organizations.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "EnterpriseMember", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseMemberOrder", - "description": "Ordering options for enterprise member connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "EnterpriseMemberOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseMemberOrderField", - "description": "Properties by which enterprise member connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", - "description": "The possible values for the enterprise members can create repositories setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NO_POLICY", "isDeprecated": False, "deprecationReason": None}, - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseMembersCanMakePurchasesSettingValue", - "description": "The possible values for the members can make purchases setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseMembershipType", - "description": "The possible values we have for filtering Platform::Objects::User#enterprises.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, - {"name": "ORG_MEMBERSHIP", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseOrder", - "description": "Ordering options for enterprises.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "EnterpriseOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseOrderField", - "description": "Properties by which enterprise connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "NAME", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseOrganizationMembershipConnection", - "description": "The connection type for Organization.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseOrganizationMembershipEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseOrganizationMembershipEdge", - "description": "An enterprise organization that a user is a member of.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "role", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseOutsideCollaboratorConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseOutsideCollaboratorEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseOutsideCollaboratorEdge", - "description": "A User who is an outside collaborator of an enterprise through one or more organizations.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositories", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories.", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": "{field: NAME, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfoConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseOwnerInfo", - "description": "Enterprise information visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", - "fields": [ - { - "name": "admins", - "args": [ - { - "name": "organizationLogins", - "description": "Only return members within the organizations with these logins", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "role", - "description": "The role to filter by.", - "type": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for administrators returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseMemberOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "hasTwoFactorEnabled", - "description": "Only return administrators with this two-factor authentication status.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "affiliatedUsersWithTwoFactorDisabled", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "affiliatedUsersWithTwoFactorDisabledExist", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "allowPrivateRepositoryForkingSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "allowPrivateRepositoryForkingSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "allowPrivateRepositoryForkingSettingPolicyValue", - "args": [], - "type": { - "kind": "ENUM", - "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "defaultRepositoryPermissionSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseDefaultRepositoryPermissionSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "defaultRepositoryPermissionSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The permission to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "DefaultRepositoryPermissionField", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "domains", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isVerified", - "description": "Filter whether or not the domain is verified.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "isApproved", - "description": "Filter whether or not the domain is approved.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "orderBy", - "description": "Ordering options for verifiable domains returned.", - "type": {"kind": "INPUT_OBJECT", "name": "VerifiableDomainOrder", "ofType": None}, - "defaultValue": "{field: DOMAIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "VerifiableDomainConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseServerInstallations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "connectedOnly", - "description": "Whether or not to only return installations discovered via GitHub Connect.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orderBy", - "description": "Ordering options for Enterprise Server installations returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerInstallationOrder", - "ofType": None, - }, - "defaultValue": "{field: HOST_NAME, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "failedInvitations", - "args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseFailedInvitationConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListEnabledSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IpAllowListEnabledSettingValue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListEntries", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for IP allow list entries returned.", - "type": {"kind": "INPUT_OBJECT", "name": "IpAllowListEntryOrder", "ofType": None}, - "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IpAllowListEntryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListForInstalledAppsEnabledSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListForInstalledAppsEnabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isUpdatingDefaultRepositoryPermission", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isUpdatingTwoFactorRequirement", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanChangeRepositoryVisibilitySetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanChangeRepositoryVisibilitySettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanCreateInternalRepositoriesSetting", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanCreatePrivateRepositoriesSetting", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanCreatePublicRepositoriesSetting", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanCreateRepositoriesSetting", - "args": [], - "type": { - "kind": "ENUM", - "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanCreateRepositoriesSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrganizationMembersCanCreateRepositoriesSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanDeleteIssuesSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanDeleteIssuesSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanDeleteRepositoriesSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanDeleteRepositoriesSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanInviteCollaboratorsSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanInviteCollaboratorsSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanMakePurchasesSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseMembersCanMakePurchasesSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanUpdateProtectedBranchesSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanUpdateProtectedBranchesSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanViewDependencyInsightsSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanViewDependencyInsightsSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "notificationDeliveryRestrictionEnabledSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "NotificationRestrictionSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oidcProvider", - "args": [], - "type": {"kind": "OBJECT", "name": "OIDCProvider", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationProjectsSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationProjectsSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "outsideCollaborators", - "args": [ - { - "name": "login", - "description": "The login of one specific outside collaborator.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for outside collaborators returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseMemberOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "visibility", - "description": "Only return outside collaborators on repositories with this visibility.", - "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasTwoFactorEnabled", - "description": "Only return outside collaborators with this two-factor authentication status.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "organizationLogins", - "description": "Only return outside collaborators within the organizations with these logins", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseOutsideCollaboratorConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pendingAdminInvitations", - "args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pending enterprise administrator invitations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseAdministratorInvitationOrder", - "ofType": None, - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - { - "name": "role", - "description": "The role to filter by.", - "type": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseAdministratorInvitationConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pendingCollaboratorInvitations", - "args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pending repository collaborator invitations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryInvitationOrder", - "ofType": None, - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryInvitationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pendingMemberInvitations", - "args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationLogins", - "description": "Only return invitations within the organizations with these logins", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "invitationSource", - "description": "Only return invitations matching this invitation source", - "type": {"kind": "ENUM", "name": "OrganizationInvitationSource", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterprisePendingMemberInvitationConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryProjectsSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryProjectsSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "samlIdentityProvider", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "samlIdentityProviderSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IdentityProviderConfigurationState", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "supportEntitlements", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for support entitlement users returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseMemberOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseMemberConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamDiscussionsSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamDiscussionsSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "twoFactorRequiredSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "EnterpriseEnabledSettingValue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "twoFactorRequiredSettingOrganizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "value", - "description": "The setting value to find organizations for.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations with this setting.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterprisePendingMemberInvitationConnection", - "description": "The connection type for OrganizationInvitation.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterprisePendingMemberInvitationEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalUniqueUserCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterprisePendingMemberInvitationEdge", - "description": "An invitation to be a member in an enterprise organization.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfo", - "description": "A subset of repository information queryable from an enterprise.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPrivate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nameWithOwner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfoConnection", - "description": "The connection type for EnterpriseRepositoryInfo.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseRepositoryInfoEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseRepositoryInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseRepositoryInfoEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseRepositoryInfo", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallation", - "description": "An Enterprise Server installation.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "customerName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hostName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isConnected", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userAccounts", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for Enterprise Server user accounts returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountOrder", - "ofType": None, - }, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userAccountsUploads", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for Enterprise Server user accounts uploads returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountsUploadOrder", - "ofType": None, - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUploadConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationConnection", - "description": "The connection type for EnterpriseServerInstallation.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationMembershipConnection", - "description": "The connection type for EnterpriseServerInstallation.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationMembershipEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationMembershipEdge", - "description": "An Enterprise Server installation that a user is a member of.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "role", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerInstallationOrder", - "description": "Ordering options for Enterprise Server installation connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerInstallationOrderField", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseServerInstallationOrderField", - "description": "Properties by which Enterprise Server installation connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "HOST_NAME", "isDeprecated": False, "deprecationReason": None}, - {"name": "CUSTOMER_NAME", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccount", - "description": "A user account on an Enterprise Server installation.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "emails", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for Enterprise Server user account emails returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountEmailOrder", - "ofType": None, - }, - "defaultValue": "{field: EMAIL, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmailConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseServerInstallation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSiteAdmin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "profileName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "remoteCreatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "remoteUserId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountConnection", - "description": "The connection type for EnterpriseServerUserAccount.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseServerUserAccountEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseServerUserAccount", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseServerUserAccount", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmail", - "description": "An email belonging to a user account on an Enterprise Server installation.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPrimary", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userAccount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseServerUserAccount", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmailConnection", - "description": "The connection type for EnterpriseServerUserAccountEmail.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmailEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmail", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountEmailEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseServerUserAccountEmail", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountEmailOrder", - "description": "Ordering options for Enterprise Server user account email connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountEmailOrderField", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountEmailOrderField", - "description": "Properties by which Enterprise Server user account email connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "EMAIL", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountOrder", - "description": "Ordering options for Enterprise Server user account connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountOrderField", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountOrderField", - "description": "Properties by which Enterprise Server user account connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "REMOTE_CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUpload", - "description": "A user accounts upload from an Enterprise Server installation.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseServerInstallation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "syncState", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountsUploadSyncState", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUploadConnection", - "description": "The connection type for EnterpriseServerUserAccountsUpload.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUploadEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUpload", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseServerUserAccountsUploadEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseServerUserAccountsUpload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerUserAccountsUploadOrder", - "description": "Ordering options for Enterprise Server user accounts upload connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountsUploadOrderField", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountsUploadOrderField", - "description": "Properties by which Enterprise Server user accounts upload connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseServerUserAccountsUploadSyncState", - "description": "Synchronization state of the Enterprise Server user accounts upload", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnterpriseUserAccount", - "description": "An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.", - "fields": [ - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseInstallations", - "args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for installations returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EnterpriseServerInstallationOrder", - "ofType": None, - }, - "defaultValue": "{field: HOST_NAME, direction: ASC}", - }, - { - "name": "role", - "description": "The role of the user in the installation.", - "type": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseServerInstallationMembershipConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizations", - "args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for organizations returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "role", - "description": "The role of the user in the enterprise organization.", - "type": { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "EnterpriseOrganizationMembershipConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseUserAccountMembershipRole", - "description": "The possible roles for enterprise membership.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNAFFILIATED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnterpriseUserDeployment", - "description": "The possible GitHub Enterprise deployments where this user can exist.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CLOUD", "isDeprecated": False, "deprecationReason": None}, - {"name": "SERVER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Environment", - "description": "An environment.", - "fields": [ - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "protectionRules", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentProtectionRuleConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnvironmentConnection", - "description": "The connection type for Environment.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnvironmentEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Environment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "EnvironmentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Environment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "EnvironmentOrderField", - "description": "Properties by which environments connections can be ordered", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "NAME", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "Environments", - "description": "Ordering options for environments", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "EnvironmentOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ExternalIdentity", - "description": "An external identity provisioned by SAML SSO or SCIM. If SAML is configured on the organization, the external identity is visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members. If SAML is configured on the enterprise, the external identity is visible to (1) enterprise owners, (2) enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", - "fields": [ - { - "name": "guid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationInvitation", - "args": [], - "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "samlIdentity", - "args": [], - "type": {"kind": "OBJECT", "name": "ExternalIdentitySamlAttributes", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "scimIdentity", - "args": [], - "type": {"kind": "OBJECT", "name": "ExternalIdentityScimAttributes", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ExternalIdentityAttribute", - "description": "An attribute for the External Identity attributes collection", - "fields": [ - { - "name": "metadata", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "value", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ExternalIdentityConnection", - "description": "The connection type for ExternalIdentity.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ExternalIdentityEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ExternalIdentity", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ExternalIdentityEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ExternalIdentity", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ExternalIdentitySamlAttributes", - "description": "SAML attributes for the External Identity", - "fields": [ - { - "name": "attributes", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ExternalIdentityAttribute", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "emails", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserEmailMetadata", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "familyName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "givenName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "groups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nameId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "username", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ExternalIdentityScimAttributes", - "description": "SCIM attributes for the External Identity", - "fields": [ - { - "name": "emails", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserEmailMetadata", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "familyName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "givenName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "groups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "username", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "FileAddition", - "description": "A command to add a file at the given path with the given contents as part of a commit. Any existing file at that that path will be replaced.", - "fields": None, - "inputFields": [ - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "contents", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "FileChanges", - "fields": None, - "inputFields": [ - { - "name": "deletions", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "FileDeletion", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - { - "name": "additions", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "FileAddition", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "FileDeletion", - "description": "A command to delete the file at the given path as part of a commit.", - "fields": None, - "inputFields": [ - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "FileViewedState", - "description": "The possible viewed states of a file .", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DISMISSED", "isDeprecated": False, "deprecationReason": None}, - {"name": "VIEWED", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNVIEWED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "Represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "FollowOrganizationInput", - "description": "Autogenerated input type of FollowOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "FollowOrganizationPayload", - "description": "Autogenerated return type of FollowOrganization", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "FollowUserInput", - "description": "Autogenerated input type of FollowUser", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "FollowUserPayload", - "description": "Autogenerated return type of FollowUser", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "FollowerConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "FollowingConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "FundingLink", - "description": "A funding platform link for a repository.", - "fields": [ - { - "name": "platform", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "FundingPlatform", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "FundingPlatform", - "description": "The possible funding platforms for repository funding links.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "GITHUB", "isDeprecated": False, "deprecationReason": None}, - {"name": "PATREON", "isDeprecated": False, "deprecationReason": None}, - {"name": "OPEN_COLLECTIVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "KO_FI", "isDeprecated": False, "deprecationReason": None}, - {"name": "TIDELIFT", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMUNITY_BRIDGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "LIBERAPAY", "isDeprecated": False, "deprecationReason": None}, - {"name": "ISSUEHUNT", "isDeprecated": False, "deprecationReason": None}, - {"name": "LFX_CROWDFUNDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "POLAR", "isDeprecated": False, "deprecationReason": None}, - {"name": "BUY_ME_A_COFFEE", "isDeprecated": False, "deprecationReason": None}, - {"name": "CUSTOM", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GenericHovercardContext", - "description": "A generic hovercard context with a message and icon", - "fields": [ - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "octicon", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Gist", - "description": "A Gist.", - "fields": [ - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GistCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "files", - "args": [ - { - "name": "limit", - "description": "The maximum number of files to return.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "10", - }, - { - "name": "oid", - "description": "The oid of the files to return", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GistFile", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "forks", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for gists returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "GistOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GistConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isFork", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPublic", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pushedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stargazerCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stargazers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StargazerConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasStarred", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GistComment", - "description": "Represents a comment on an Gist.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "gist", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Gist", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMinimized", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizedReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMinimize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GistCommentConnection", - "description": "The connection type for GistComment.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GistCommentEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GistComment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GistCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "GistComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GistConnection", - "description": "The connection type for Gist.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GistEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Gist", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GistEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Gist", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GistFile", - "description": "A file in a gist.", - "fields": [ - { - "name": "encodedName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "encoding", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "extension", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isImage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isTruncated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "language", - "args": [], - "type": {"kind": "OBJECT", "name": "Language", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "size", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "text", - "args": [ - { - "name": "truncate", - "description": "Optionally truncate the returned file to this length.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "GistOrder", - "description": "Ordering options for gist connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "GistOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "GistOrderField", - "description": "Properties by which gist connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUSHED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "GistPrivacy", - "description": "The privacy of a Gist", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "SECRET", "isDeprecated": False, "deprecationReason": None}, - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GitActor", - "description": "Represents an actor in a Git commit (ie. an author or committer).", - "fields": [ - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "date", - "args": [], - "type": {"kind": "SCALAR", "name": "GitTimestamp", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GitActorConnection", - "description": "The connection type for GitActor.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GitActorEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GitActorEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GitHubMetadata", - "description": "Represents information about the GitHub instance.", - "fields": [ - { - "name": "gitHubServicesSha", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "gitIpAddresses", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "githubEnterpriseImporterIpAddresses", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hookIpAddresses", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "importerIpAddresses", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPasswordAuthenticationVerifiable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pagesIpAddresses", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "GitObject", - "description": "Represents a Git object.", - "fields": [ - { - "name": "abbreviatedOid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Blob", "ofType": None}, - {"kind": "OBJECT", "name": "Commit", "ofType": None}, - {"kind": "OBJECT", "name": "Tag", "ofType": None}, - {"kind": "OBJECT", "name": "Tree", "ofType": None}, - ], - }, - { - "kind": "SCALAR", - "name": "GitObjectID", - "description": "A Git object ID.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "GitRefname", - "description": "A fully qualified reference name (e.g. `refs/heads/master`).", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "GitSSHRemote", - "description": "Git SSH string", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "GitSignature", - "description": "Information about a signature (GPG or S/MIME) on a Commit or Tag.", - "fields": [ - { - "name": "email", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isValid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "payload", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signature", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "wasSignedByGitHub", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "GpgSignature", "ofType": None}, - {"kind": "OBJECT", "name": "SmimeSignature", "ofType": None}, - {"kind": "OBJECT", "name": "SshSignature", "ofType": None}, - {"kind": "OBJECT", "name": "UnknownSignature", "ofType": None}, - ], - }, - { - "kind": "ENUM", - "name": "GitSignatureState", - "description": "The state of a Git signature.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "VALID", "isDeprecated": False, "deprecationReason": None}, - {"name": "INVALID", "isDeprecated": False, "deprecationReason": None}, - {"name": "MALFORMED_SIG", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNKNOWN_KEY", "isDeprecated": False, "deprecationReason": None}, - {"name": "BAD_EMAIL", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNVERIFIED_EMAIL", "isDeprecated": False, "deprecationReason": None}, - {"name": "NO_USER", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNKNOWN_SIG_TYPE", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNSIGNED", "isDeprecated": False, "deprecationReason": None}, - {"name": "GPGVERIFY_UNAVAILABLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "GPGVERIFY_ERROR", "isDeprecated": False, "deprecationReason": None}, - {"name": "NOT_SIGNING_KEY", "isDeprecated": False, "deprecationReason": None}, - {"name": "EXPIRED_KEY", "isDeprecated": False, "deprecationReason": None}, - {"name": "OCSP_PENDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "OCSP_ERROR", "isDeprecated": False, "deprecationReason": None}, - {"name": "BAD_CERT", "isDeprecated": False, "deprecationReason": None}, - {"name": "OCSP_REVOKED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "GitTimestamp", - "description": "An ISO-8601 encoded date string. Unlike the DateTime type, GitTimestamp is not converted in UTC.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GpgSignature", - "description": "Represents a GPG signature on a Commit or Tag.", - "fields": [ - { - "name": "email", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isValid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "keyId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "payload", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signature", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "wasSignedByGitHub", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "GitSignature", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "GrantEnterpriseOrganizationsMigratorRoleInput", - "description": "Autogenerated input type of GrantEnterpriseOrganizationsMigratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "login", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GrantEnterpriseOrganizationsMigratorRolePayload", - "description": "Autogenerated return type of GrantEnterpriseOrganizationsMigratorRole", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "GrantMigratorRoleInput", - "description": "Autogenerated input type of GrantMigratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "actor", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "actorType", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ActorType", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "GrantMigratorRolePayload", - "description": "Autogenerated return type of GrantMigratorRole", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "success", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "HTML", - "description": "A string containing HTML code.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "HeadRefDeletedEvent", - "description": "Represents a 'head_ref_deleted' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headRef", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headRefName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "HeadRefForcePushedEvent", - "description": "Represents a 'head_ref_force_pushed' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "afterCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "beforeCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "HeadRefRestoredEvent", - "description": "Represents a 'head_ref_restored' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Hovercard", - "description": "Detail needed to display a hovercard for a user", - "fields": [ - { - "name": "contexts", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "HovercardContext", - "description": "An individual line of a hovercard", - "fields": [ - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "octicon", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "GenericHovercardContext", "ofType": None}, - {"kind": "OBJECT", "name": "OrganizationTeamsHovercardContext", "ofType": None}, - {"kind": "OBJECT", "name": "OrganizationsHovercardContext", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewStatusHovercardContext", "ofType": None}, - {"kind": "OBJECT", "name": "ViewerHovercardContext", "ofType": None}, - ], - }, - { - "kind": "SCALAR", - "name": "ID", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IdentityProviderConfigurationState", - "description": "The possible states in which authentication can be configured with an identity provider.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ENFORCED", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONFIGURED", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNCONFIGURED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportProjectInput", - "description": "Autogenerated input type of ImportProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerName", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "public", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "columnImports", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectColumnImport", - "ofType": None, - }, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ImportProjectPayload", - "description": "Autogenerated return type of ImportProject", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "InviteEnterpriseAdminInput", - "description": "Autogenerated input type of InviteEnterpriseAdmin", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "invitee", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "email", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "role", - "type": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "InviteEnterpriseAdminPayload", - "description": "Autogenerated return type of InviteEnterpriseAdmin", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitation", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IpAllowListEnabledSettingValue", - "description": "The possible values for the IP allow list enabled setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IpAllowListEntry", - "description": "An IP address or range of addresses that is allowed to access an owner's resources.", - "fields": [ - { - "name": "allowListValue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isActive", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "IpAllowListOwner", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IpAllowListEntryConnection", - "description": "The connection type for IpAllowListEntry.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IpAllowListEntryEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IpAllowListEntryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "IpAllowListEntryOrder", - "description": "Ordering options for IP allow list entry connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IpAllowListEntryOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IpAllowListEntryOrderField", - "description": "Properties by which IP allow list entry connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ALLOW_LIST_VALUE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IpAllowListForInstalledAppsEnabledSettingValue", - "description": "The possible values for the IP allow list configuration for installed GitHub Apps setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "IpAllowListOwner", - "description": "Types that can own an IP allow list.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "App", "ofType": None}, - {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "Issue", - "description": "An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.", - "fields": [ - { - "name": "activeLockReason", - "args": [], - "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assignees", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comments", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for issue comments returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueCommentOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDatabaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hovercard", - "args": [ - { - "name": "includeNotificationContexts", - "description": "Whether or not to include notification contexts", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Hovercard", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPinned", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isReadByViewer", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labels", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "linkedBranches", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "LinkedBranchConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "locked", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "milestone", - "args": [], - "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "participants", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectCards", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "archivedStates", - "description": "A list of archived states to filter the cards by", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectCardArchivedState", "ofType": None}, - }, - "defaultValue": "[ARCHIVED, NOT_ARCHIVED]", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectCardConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectItems", - "args": [ - { - "name": "includeArchived", - "description": "Include archived items.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsV2", - "args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, - "defaultValue": "{field: NUMBER, direction: DESC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stateReason", - "args": [], - "type": {"kind": "ENUM", "name": "IssueStateReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "timeline", - "args": [ - { - "name": "since", - "description": "Allows filtering timeline events by a `since` timestamp.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueTimelineConnection", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "`timeline` will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.", - }, - { - "name": "timelineItems", - "args": [ - { - "name": "since", - "description": "Filter timeline items by a `since` timestamp.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "skip", - "description": "Skips the first _n_ elements in the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "itemTypes", - "description": "Filter timeline items by type.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IssueTimelineItemsItemType", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueTimelineItemsConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "titleHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "trackedInIssues", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "trackedIssues", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "trackedIssuesCount", - "args": [ - { - "name": "states", - "description": "Limit the count to tracked issues with the specified states.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "TrackedIssueStates", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanClose", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReopen", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSubscribe", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerSubscription", - "args": [], - "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerThreadSubscriptionFormAction", - "args": [], - "type": {"kind": "ENUM", "name": "ThreadSubscriptionFormAction", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerThreadSubscriptionStatus", - "args": [], - "type": {"kind": "ENUM", "name": "ThreadSubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, - {"kind": "INTERFACE", "name": "Closable", "ofType": None}, - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, - {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - {"kind": "INTERFACE", "name": "SubscribableThread", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IssueClosedStateReason", - "description": "The possible state reasons of a closed issue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, - {"name": "NOT_PLANNED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueComment", - "description": "Represents a comment on an Issue.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDatabaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMinimized", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizedReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMinimize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueCommentConnection", - "description": "The connection type for IssueComment.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueCommentEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "IssueCommentOrder", - "description": "Ways in which lists of issue comments can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IssueCommentOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IssueCommentOrderField", - "description": "Properties by which issue comment connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueConnection", - "description": "The connection type for Issue.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueContributionsByRepository", - "description": "This aggregates issues opened by a user within one repository.", - "fields": [ - { - "name": "contributions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, - "defaultValue": "{direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedIssueContributionConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "IssueFilters", - "description": "Ways in which to filter lists of issues.", - "fields": None, - "inputFields": [ - { - "name": "assignee", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "createdBy", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labels", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "mentioned", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "milestone", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "milestoneNumber", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "since", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "states", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "viewerSubscribed", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "IssueOrPullRequest", - "description": "Used for return value of Repository.issueOrPullRequest.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "IssueOrder", - "description": "Ways in which lists of issues can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IssueOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IssueOrderField", - "description": "Properties by which issue connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMENTS", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IssueState", - "description": "The possible states of an issue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IssueStateReason", - "description": "The possible state reasons of an issue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "REOPENED", "isDeprecated": False, "deprecationReason": None}, - {"name": "NOT_PLANNED", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueTemplate", - "description": "A repository issue template.", - "fields": [ - { - "name": "about", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assignees", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "filename", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labels", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueTimelineConnection", - "description": "The connection type for IssueTimelineItem.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueTimelineItemEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "IssueTimelineItem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "IssueTimelineItem", - "description": "An item in an issue timeline", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Commit", "ofType": None}, - {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "TransferredEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "IssueTimelineItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "IssueTimelineItem", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "IssueTimelineItems", - "description": "An item in an issue timeline", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "AddedToProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "CommentDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConnectedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertedNoteToIssueEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertedToDiscussionEvent", "ofType": None}, - {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DisconnectedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MarkedAsDuplicateEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MentionedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MovedColumnsInProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "PinnedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RemovedFromProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "TransferredEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnmarkedAsDuplicateEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnpinnedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "IssueTimelineItemsConnection", - "description": "The connection type for IssueTimelineItems.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueTimelineItemsEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "filteredCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "IssueTimelineItems", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "IssueTimelineItemsEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "IssueTimelineItems", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "IssueTimelineItemsItemType", - "description": "The possible item types found in a timeline.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ISSUE_COMMENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CROSS_REFERENCED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADDED_TO_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ASSIGNED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMENT_DELETED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONNECTED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONVERTED_NOTE_TO_ISSUE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONVERTED_TO_DISCUSSION_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "DEMILESTONED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISCONNECTED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "LABELED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "LOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MARKED_AS_DUPLICATE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MENTIONED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MILESTONED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MOVED_COLUMNS_IN_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "PINNED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REFERENCED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REMOVED_FROM_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "RENAMED_TITLE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REOPENED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIBED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "TRANSFERRED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNASSIGNED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNLABELED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNLOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "USER_BLOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNMARKED_AS_DUPLICATE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNPINNED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNSUBSCRIBED_EVENT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "JoinedGitHubContribution", - "description": "Represents a user signing up for a GitHub account.", - "fields": [ - { - "name": "isRestricted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "occurredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Label", - "description": "A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.", - "fields": [ - { - "name": "color", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDefault", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issues", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the issues by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "filterBy", - "description": "Filtering options for issues returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueFilters", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequests", - "args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LabelConnection", - "description": "The connection type for Label.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "LabelEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Label", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LabelEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Label", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "LabelOrder", - "description": "Ways in which lists of labels can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "LabelOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "LabelOrderField", - "description": "Properties by which label connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Labelable", - "description": "An object that can have labels assigned to it.", - "fields": [ - { - "name": "labels", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "LabeledEvent", - "description": "Represents a 'labeled' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "label", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Label", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labelable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Language", - "description": "Represents a given language found in repositories.", - "fields": [ - { - "name": "color", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LanguageConnection", - "description": "A list of languages associated with the parent.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "LanguageEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Language", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalSize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LanguageEdge", - "description": "Represents the language of a repository.", - "fields": [ - { - "name": "cursor", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Language", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "size", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "LanguageOrder", - "description": "Ordering options for language connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "LanguageOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "LanguageOrderField", - "description": "Properties by which language connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "SIZE", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "License", - "description": "A repository's open source license", - "fields": [ - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "conditions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "LicenseRule", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "featured", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hidden", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "implementation", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "key", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "limitations", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "LicenseRule", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nickname", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permissions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "LicenseRule", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pseudoLicense", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "spdxId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LicenseRule", - "description": "Describes a License's conditions, permissions, and limitations", - "fields": [ - { - "name": "description", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "key", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "label", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "LinkProjectV2ToRepositoryInput", - "description": "Autogenerated input type of LinkProjectV2ToRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LinkProjectV2ToRepositoryPayload", - "description": "Autogenerated return type of LinkProjectV2ToRepository", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "LinkProjectV2ToTeamInput", - "description": "Autogenerated input type of LinkProjectV2ToTeam", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "teamId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LinkProjectV2ToTeamPayload", - "description": "Autogenerated return type of LinkProjectV2ToTeam", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "LinkRepositoryToProjectInput", - "description": "Autogenerated input type of LinkRepositoryToProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LinkRepositoryToProjectPayload", - "description": "Autogenerated return type of LinkRepositoryToProject", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LinkedBranch", - "description": "A branch linked to an issue.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LinkedBranchConnection", - "description": "A list of branches linked to an issue.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "LinkedBranchEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "LinkedBranch", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LinkedBranchEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "LinkedBranch", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "LockLockableInput", - "description": "Autogenerated input type of LockLockable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "lockableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "lockReason", - "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "LockLockablePayload", - "description": "Autogenerated return type of LockLockable", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockedRecord", - "args": [], - "type": {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "LockReason", - "description": "The possible reasons that an issue or pull request was locked.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OFF_TOPIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "TOO_HEATED", "isDeprecated": False, "deprecationReason": None}, - {"name": "RESOLVED", "isDeprecated": False, "deprecationReason": None}, - {"name": "SPAM", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Lockable", - "description": "An object that can be locked.", - "fields": [ - { - "name": "activeLockReason", - "args": [], - "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "locked", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "LockedEvent", - "description": "Represents a 'locked' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockReason", - "args": [], - "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Mannequin", - "description": "A placeholder user for attribution of imported data on GitHub.", - "fields": [ - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "claimant", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MannequinConnection", - "description": "A list of mannequins.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MannequinEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MannequinEdge", - "description": "Represents a mannequin.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MannequinOrder", - "description": "Ordering options for mannequins.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MannequinOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MannequinOrderField", - "description": "Properties by which mannequins can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkDiscussionCommentAsAnswerInput", - "description": "Autogenerated input type of MarkDiscussionCommentAsAnswer", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarkDiscussionCommentAsAnswerPayload", - "description": "Autogenerated return type of MarkDiscussionCommentAsAnswer", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkFileAsViewedInput", - "description": "Autogenerated input type of MarkFileAsViewed", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarkFileAsViewedPayload", - "description": "Autogenerated return type of MarkFileAsViewed", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkNotificationAsDoneInput", - "description": "Autogenerated input type of MarkNotificationAsDone", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarkNotificationAsDonePayload", - "description": "Autogenerated return type of MarkNotificationAsDone", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "success", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkProjectV2AsTemplateInput", - "description": "Autogenerated input type of MarkProjectV2AsTemplate", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarkProjectV2AsTemplatePayload", - "description": "Autogenerated return type of MarkProjectV2AsTemplate", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MarkPullRequestReadyForReviewInput", - "description": "Autogenerated input type of MarkPullRequestReadyForReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarkPullRequestReadyForReviewPayload", - "description": "Autogenerated return type of MarkPullRequestReadyForReview", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarkedAsDuplicateEvent", - "description": "Represents a 'marked_as_duplicate' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "canonical", - "args": [], - "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "duplicate", - "args": [], - "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCrossRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarketplaceCategory", - "description": "A public description of a Marketplace category.", - "fields": [ - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "howItWorks", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "primaryListingCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "secondaryListingCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "slug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarketplaceListing", - "description": "A listing in the GitHub integration marketplace.", - "fields": [ - { - "name": "app", - "args": [], - "type": {"kind": "OBJECT", "name": "App", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "companyUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "configurationResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "configurationUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "documentationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "extendedDescription", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "extendedDescriptionHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDescription", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDescriptionHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasPublishedFreeTrialPlans", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasTermsOfService", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasVerifiedOwner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "howItWorks", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "howItWorksHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "installationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "installedForViewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isArchived", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDraft", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPaid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPublic", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isRejected", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isUnverified", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isUnverifiedPending", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isVerificationPendingFromDraft", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isVerificationPendingFromUnverified", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isVerified", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "logoBackgroundColor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "logoUrl", - "args": [ - { - "name": "size", - "description": "The size in pixels of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "400", - } - ], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "normalizedShortDescription", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pricingUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "primaryCategory", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "privacyPolicyUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "screenshotUrls", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "secondaryCategory", - "args": [], - "type": {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "shortDescription", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "slug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "statusUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "supportEmail", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "supportUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "termsOfServiceUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanAddPlans", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanApprove", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelist", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanEditCategories", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanEditPlans", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanRedraft", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanRequestApproval", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasPurchased", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasPurchasedForAllOrganizations", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerIsListingAdmin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarketplaceListingConnection", - "description": "Look up Marketplace Listings", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MarketplaceListingEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MarketplaceListingEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MemberFeatureRequestNotification", - "description": "Represents a member feature request notification", - "fields": [ - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "MemberStatusable", - "description": "Entities that have members who can set status messages.", - "fields": [ - { - "name": "memberStatuses", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for user statuses returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "UserStatusOrder", "ofType": None}, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserStatusConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposClearAuditEntry", - "description": "Audit log entry for a members_can_delete_repos.clear event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposDisableAuditEntry", - "description": "Audit log entry for a members_can_delete_repos.disable event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MembersCanDeleteReposEnableAuditEntry", - "description": "Audit log entry for a members_can_delete_repos.enable event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MentionedEvent", - "description": "Represents a 'mentioned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MergeBranchInput", - "description": "Autogenerated input type of MergeBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "base", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "head", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "commitMessage", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "authorEmail", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MergeBranchPayload", - "description": "Autogenerated return type of MergeBranch", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MergeCommitMessage", - "description": "The possible default commit messages for merges.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PR_TITLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PR_BODY", "isDeprecated": False, "deprecationReason": None}, - {"name": "BLANK", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MergeCommitTitle", - "description": "The possible default commit titles for merges.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PR_TITLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "MERGE_MESSAGE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MergePullRequestInput", - "description": "Autogenerated input type of MergePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "commitHeadline", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "commitBody", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "expectedHeadOid", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "mergeMethod", - "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, - "defaultValue": "MERGE", - }, - { - "name": "authorEmail", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MergePullRequestPayload", - "description": "Autogenerated return type of MergePullRequest", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MergeQueue", - "description": "The queue of pull request entries to be merged into a protected branch in a repository.", - "fields": [ - { - "name": "configuration", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueueConfiguration", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "entries", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "MergeQueueEntryConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nextEntryEstimatedTimeToMerge", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MergeQueueConfiguration", - "description": "Configuration for a MergeQueue", - "fields": [ - { - "name": "checkResponseTimeout", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "maximumEntriesToBuild", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "maximumEntriesToMerge", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeMethod", - "args": [], - "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergingStrategy", - "args": [], - "type": {"kind": "ENUM", "name": "MergeQueueMergingStrategy", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimumEntriesToMerge", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimumEntriesToMergeWaitTime", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MergeQueueEntry", - "description": "Entries in a MergeQueue", - "fields": [ - { - "name": "baseCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enqueuedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enqueuer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "estimatedTimeToMerge", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "jump", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeQueue", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "position", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "solo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MergeQueueEntryState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MergeQueueEntryConnection", - "description": "The connection type for MergeQueueEntry.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MergeQueueEntryEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MergeQueueEntryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MergeQueueEntryState", - "description": "The possible states for a merge queue entry.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, - {"name": "AWAITING_CHECKS", "isDeprecated": False, "deprecationReason": None}, - {"name": "MERGEABLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNMERGEABLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "LOCKED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MergeQueueMergingStrategy", - "description": "The possible merging strategies for a merge queue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ALLGREEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "HEADGREEN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MergeStateStatus", - "description": "Detailed status information about a pull request merge.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DIRTY", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNKNOWN", "isDeprecated": False, "deprecationReason": None}, - {"name": "BLOCKED", "isDeprecated": False, "deprecationReason": None}, - {"name": "BEHIND", "isDeprecated": False, "deprecationReason": None}, - { - "name": "DRAFT", - "isDeprecated": True, - "deprecationReason": "DRAFT state will be removed from this enum and `isDraft` should be used instead Use PullRequest.isDraft instead. Removal on 2021-01-01 UTC.", - }, - {"name": "UNSTABLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "HAS_HOOKS", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLEAN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MergeableState", - "description": "Whether or not a PullRequest can be merged.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MERGEABLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONFLICTING", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNKNOWN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MergedEvent", - "description": "Represents a 'merged' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeRef", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeRefName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Migration", - "description": "Represents a GitHub Enterprise Importer (GEI) migration.", - "fields": [ - { - "name": "continueOnError", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "failureReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "migrationLogUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "migrationSource", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MigrationSource", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sourceUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MigrationState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "warningsCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [{"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}], - }, - { - "kind": "OBJECT", - "name": "MigrationSource", - "description": "A GitHub Enterprise Importer (GEI) migration source.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "type", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MigrationSourceType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MigrationSourceType", - "description": "Represents the different GitHub Enterprise Importer (GEI) migration sources.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "AZURE_DEVOPS", "isDeprecated": False, "deprecationReason": None}, - {"name": "BITBUCKET_SERVER", "isDeprecated": False, "deprecationReason": None}, - {"name": "GITHUB_ARCHIVE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MigrationState", - "description": "The GitHub Enterprise Importer (GEI) migration state.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NOT_STARTED", "isDeprecated": False, "deprecationReason": None}, - {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUCCEEDED", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILED", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING_VALIDATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILED_VALIDATION", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Milestone", - "description": "Represents a Milestone object on a given repository.", - "fields": [ - { - "name": "closed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dueOn", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issues", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the issues by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "filterBy", - "description": "Filtering options for issues returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueFilters", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "progressPercentage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequests", - "args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MilestoneState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanClose", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReopen", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Closable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MilestoneConnection", - "description": "The connection type for Milestone.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MilestoneEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MilestoneEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "MilestoneItem", - "description": "Types that can be inside a Milestone.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "MilestoneOrder", - "description": "Ordering options for milestone connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MilestoneOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MilestoneOrderField", - "description": "Properties by which milestone connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DUE_DATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "MilestoneState", - "description": "The possible states of a milestone.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MilestonedEvent", - "description": "Represents a 'milestoned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "milestoneTitle", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "MilestoneItem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Minimizable", - "description": "Entities that can be minimized.", - "fields": [ - { - "name": "isMinimized", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizedReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMinimize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "GistComment", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "MinimizeCommentInput", - "description": "Autogenerated input type of MinimizeComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "classifier", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ReportedContentClassifiers", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MinimizeCommentPayload", - "description": "Autogenerated return type of MinimizeComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizedComment", - "args": [], - "type": {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MoveProjectCardInput", - "description": "Autogenerated input type of MoveProjectCard", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "cardId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "columnId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "afterCardId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MoveProjectCardPayload", - "description": "Autogenerated return type of MoveProjectCard", - "fields": [ - { - "name": "cardEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectCardEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "MoveProjectColumnInput", - "description": "Autogenerated input type of MoveProjectColumn", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "columnId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "afterColumnId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MoveProjectColumnPayload", - "description": "Autogenerated return type of MoveProjectColumn", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "columnEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectColumnEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "MovedColumnsInProjectEvent", - "description": "Represents a 'moved_columns_in_project' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "previousProjectColumnName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectCard", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectColumnName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": "The root query for implementing GraphQL mutations.", - "fields": [ - { - "name": "abortQueuedMigrations", - "args": [ - { - "name": "input", - "description": "Parameters for AbortQueuedMigrations", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AbortQueuedMigrationsInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AbortQueuedMigrationsPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "abortRepositoryMigration", - "args": [ - { - "name": "input", - "description": "Parameters for AbortRepositoryMigration", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AbortRepositoryMigrationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AbortRepositoryMigrationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "acceptEnterpriseAdministratorInvitation", - "args": [ - { - "name": "input", - "description": "Parameters for AcceptEnterpriseAdministratorInvitation", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AcceptEnterpriseAdministratorInvitationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "AcceptEnterpriseAdministratorInvitationPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "acceptTopicSuggestion", - "args": [ - { - "name": "input", - "description": "Parameters for AcceptTopicSuggestion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AcceptTopicSuggestionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AcceptTopicSuggestionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addAssigneesToAssignable", - "args": [ - { - "name": "input", - "description": "Parameters for AddAssigneesToAssignable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddAssigneesToAssignableInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddAssigneesToAssignablePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addComment", - "args": [ - { - "name": "input", - "description": "Parameters for AddComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "AddCommentInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addDiscussionComment", - "args": [ - { - "name": "input", - "description": "Parameters for AddDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddDiscussionCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddDiscussionCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addDiscussionPollVote", - "args": [ - { - "name": "input", - "description": "Parameters for AddDiscussionPollVote", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddDiscussionPollVoteInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddDiscussionPollVotePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addEnterpriseOrganizationMember", - "args": [ - { - "name": "input", - "description": "Parameters for AddEnterpriseOrganizationMember", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddEnterpriseOrganizationMemberInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "AddEnterpriseOrganizationMemberPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addEnterpriseSupportEntitlement", - "args": [ - { - "name": "input", - "description": "Parameters for AddEnterpriseSupportEntitlement", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddEnterpriseSupportEntitlementInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "AddEnterpriseSupportEntitlementPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addLabelsToLabelable", - "args": [ - { - "name": "input", - "description": "Parameters for AddLabelsToLabelable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddLabelsToLabelableInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddLabelsToLabelablePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addProjectCard", - "args": [ - { - "name": "input", - "description": "Parameters for AddProjectCard", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddProjectCardInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddProjectCardPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addProjectColumn", - "args": [ - { - "name": "input", - "description": "Parameters for AddProjectColumn", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddProjectColumnInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddProjectColumnPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addProjectV2DraftIssue", - "args": [ - { - "name": "input", - "description": "Parameters for AddProjectV2DraftIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddProjectV2DraftIssueInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddProjectV2DraftIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addProjectV2ItemById", - "args": [ - { - "name": "input", - "description": "Parameters for AddProjectV2ItemById", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddProjectV2ItemByIdInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddProjectV2ItemByIdPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addPullRequestReview", - "args": [ - { - "name": "input", - "description": "Parameters for AddPullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddPullRequestReviewPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addPullRequestReviewComment", - "args": [ - { - "name": "input", - "description": "Parameters for AddPullRequestReviewComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddPullRequestReviewCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addPullRequestReviewThread", - "args": [ - { - "name": "input", - "description": "Parameters for AddPullRequestReviewThread", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewThreadInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddPullRequestReviewThreadPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addPullRequestReviewThreadReply", - "args": [ - { - "name": "input", - "description": "Parameters for AddPullRequestReviewThreadReply", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddPullRequestReviewThreadReplyInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "AddPullRequestReviewThreadReplyPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addReaction", - "args": [ - { - "name": "input", - "description": "Parameters for AddReaction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "AddReactionInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddReactionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addStar", - "args": [ - { - "name": "input", - "description": "Parameters for AddStar", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "AddStarInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddStarPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addUpvote", - "args": [ - { - "name": "input", - "description": "Parameters for AddUpvote", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "AddUpvoteInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddUpvotePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "addVerifiableDomain", - "args": [ - { - "name": "input", - "description": "Parameters for AddVerifiableDomain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddVerifiableDomainInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "AddVerifiableDomainPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "approveVerifiableDomain", - "args": [ - { - "name": "input", - "description": "Parameters for ApproveVerifiableDomain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApproveVerifiableDomainInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ApproveVerifiableDomainPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "archiveProjectV2Item", - "args": [ - { - "name": "input", - "description": "Parameters for ArchiveProjectV2Item", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ArchiveProjectV2ItemInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ArchiveProjectV2ItemPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "archiveRepository", - "args": [ - { - "name": "input", - "description": "Parameters for ArchiveRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ArchiveRepositoryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ArchiveRepositoryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "cancelEnterpriseAdminInvitation", - "args": [ - { - "name": "input", - "description": "Parameters for CancelEnterpriseAdminInvitation", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CancelEnterpriseAdminInvitationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "CancelEnterpriseAdminInvitationPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "cancelSponsorship", - "args": [ - { - "name": "input", - "description": "Parameters for CancelSponsorship", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CancelSponsorshipInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CancelSponsorshipPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "changeUserStatus", - "args": [ - { - "name": "input", - "description": "Parameters for ChangeUserStatus", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeUserStatusInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ChangeUserStatusPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clearLabelsFromLabelable", - "args": [ - { - "name": "input", - "description": "Parameters for ClearLabelsFromLabelable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ClearLabelsFromLabelableInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ClearLabelsFromLabelablePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clearProjectV2ItemFieldValue", - "args": [ - { - "name": "input", - "description": "Parameters for ClearProjectV2ItemFieldValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ClearProjectV2ItemFieldValueInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ClearProjectV2ItemFieldValuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "cloneProject", - "args": [ - { - "name": "input", - "description": "Parameters for CloneProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CloneProjectInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CloneProjectPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "cloneTemplateRepository", - "args": [ - { - "name": "input", - "description": "Parameters for CloneTemplateRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CloneTemplateRepositoryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CloneTemplateRepositoryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closeDiscussion", - "args": [ - { - "name": "input", - "description": "Parameters for CloseDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CloseDiscussionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CloseDiscussionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closeIssue", - "args": [ - { - "name": "input", - "description": "Parameters for CloseIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CloseIssueInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CloseIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closePullRequest", - "args": [ - { - "name": "input", - "description": "Parameters for ClosePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ClosePullRequestInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ClosePullRequestPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "convertProjectCardNoteToIssue", - "args": [ - { - "name": "input", - "description": "Parameters for ConvertProjectCardNoteToIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ConvertProjectCardNoteToIssueInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ConvertProjectCardNoteToIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "convertPullRequestToDraft", - "args": [ - { - "name": "input", - "description": "Parameters for ConvertPullRequestToDraft", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ConvertPullRequestToDraftInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ConvertPullRequestToDraftPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "copyProjectV2", - "args": [ - { - "name": "input", - "description": "Parameters for CopyProjectV2", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CopyProjectV2Input", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CopyProjectV2Payload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createAttributionInvitation", - "args": [ - { - "name": "input", - "description": "Parameters for CreateAttributionInvitation", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateAttributionInvitationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateAttributionInvitationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createBranchProtectionRule", - "args": [ - { - "name": "input", - "description": "Parameters for CreateBranchProtectionRule", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateBranchProtectionRuleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateBranchProtectionRulePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createCheckRun", - "args": [ - { - "name": "input", - "description": "Parameters for CreateCheckRun", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCheckRunInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateCheckRunPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createCheckSuite", - "args": [ - { - "name": "input", - "description": "Parameters for CreateCheckSuite", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCheckSuiteInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateCheckSuitePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createCommitOnBranch", - "args": [ - { - "name": "input", - "description": "Parameters for CreateCommitOnBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateCommitOnBranchInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateCommitOnBranchPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createDeploymentStatus", - "args": [ - { - "name": "input", - "description": "Parameters for CreateDeploymentStatus", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateDeploymentStatusInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateDeploymentStatusPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createDiscussion", - "args": [ - { - "name": "input", - "description": "Parameters for CreateDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateDiscussionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateDiscussionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createEnterpriseOrganization", - "args": [ - { - "name": "input", - "description": "Parameters for CreateEnterpriseOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateEnterpriseOrganizationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateEnterpriseOrganizationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createEnvironment", - "args": [ - { - "name": "input", - "description": "Parameters for CreateEnvironment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateEnvironmentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateEnvironmentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createIpAllowListEntry", - "args": [ - { - "name": "input", - "description": "Parameters for CreateIpAllowListEntry", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateIpAllowListEntryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateIpAllowListEntryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createIssue", - "args": [ - { - "name": "input", - "description": "Parameters for CreateIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CreateIssueInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createLabel", - "args": [ - { - "name": "input", - "description": "Parameters for CreateLabel", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CreateLabelInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateLabelPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createLinkedBranch", - "args": [ - { - "name": "input", - "description": "Parameters for CreateLinkedBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateLinkedBranchInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateLinkedBranchPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createMigrationSource", - "args": [ - { - "name": "input", - "description": "Parameters for CreateMigrationSource", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateMigrationSourceInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateMigrationSourcePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createProject", - "args": [ - { - "name": "input", - "description": "Parameters for CreateProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateProjectInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateProjectPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createProjectV2", - "args": [ - { - "name": "input", - "description": "Parameters for CreateProjectV2", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateProjectV2Input", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateProjectV2Payload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createProjectV2Field", - "args": [ - { - "name": "input", - "description": "Parameters for CreateProjectV2Field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateProjectV2FieldInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateProjectV2FieldPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createPullRequest", - "args": [ - { - "name": "input", - "description": "Parameters for CreatePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreatePullRequestInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreatePullRequestPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createRef", - "args": [ - { - "name": "input", - "description": "Parameters for CreateRef", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CreateRefInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateRefPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createRepository", - "args": [ - { - "name": "input", - "description": "Parameters for CreateRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateRepositoryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateRepositoryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createRepositoryRuleset", - "args": [ - { - "name": "input", - "description": "Parameters for CreateRepositoryRuleset", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateRepositoryRulesetInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateRepositoryRulesetPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createSponsorsListing", - "args": [ - { - "name": "input", - "description": "Parameters for CreateSponsorsListing", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorsListingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateSponsorsListingPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createSponsorsTier", - "args": [ - { - "name": "input", - "description": "Parameters for CreateSponsorsTier", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorsTierInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateSponsorsTierPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createSponsorship", - "args": [ - { - "name": "input", - "description": "Parameters for CreateSponsorship", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorshipInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateSponsorshipPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createSponsorships", - "args": [ - { - "name": "input", - "description": "Parameters for CreateSponsorships", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateSponsorshipsInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateSponsorshipsPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createTeamDiscussion", - "args": [ - { - "name": "input", - "description": "Parameters for CreateTeamDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTeamDiscussionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateTeamDiscussionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createTeamDiscussionComment", - "args": [ - { - "name": "input", - "description": "Parameters for CreateTeamDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateTeamDiscussionCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateTeamDiscussionCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createUserList", - "args": [ - { - "name": "input", - "description": "Parameters for CreateUserList", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateUserListInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CreateUserListPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "declineTopicSuggestion", - "args": [ - { - "name": "input", - "description": "Parameters for DeclineTopicSuggestion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeclineTopicSuggestionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeclineTopicSuggestionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteBranchProtectionRule", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteBranchProtectionRule", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteBranchProtectionRuleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteBranchProtectionRulePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteDeployment", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteDeployment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteDeploymentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteDeploymentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteDiscussion", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteDiscussionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteDiscussionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteDiscussionComment", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteDiscussionCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteDiscussionCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteEnvironment", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteEnvironment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteEnvironmentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteEnvironmentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteIpAllowListEntry", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteIpAllowListEntry", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteIpAllowListEntryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteIpAllowListEntryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteIssue", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "DeleteIssueInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteIssueComment", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteIssueComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteIssueCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteIssueCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteLabel", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteLabel", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "DeleteLabelInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteLabelPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteLinkedBranch", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteLinkedBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteLinkedBranchInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteLinkedBranchPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletePackageVersion", - "args": [ - { - "name": "input", - "description": "Parameters for DeletePackageVersion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeletePackageVersionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeletePackageVersionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteProject", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteProjectPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteProjectCard", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectCard", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectCardInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteProjectCardPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteProjectColumn", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectColumn", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectColumnInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteProjectColumnPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteProjectV2", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectV2", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2Input", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteProjectV2Payload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteProjectV2Field", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectV2Field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2FieldInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteProjectV2FieldPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteProjectV2Item", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectV2Item", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2ItemInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteProjectV2ItemPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteProjectV2Workflow", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteProjectV2Workflow", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteProjectV2WorkflowInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteProjectV2WorkflowPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletePullRequestReview", - "args": [ - { - "name": "input", - "description": "Parameters for DeletePullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeletePullRequestReviewInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeletePullRequestReviewPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletePullRequestReviewComment", - "args": [ - { - "name": "input", - "description": "Parameters for DeletePullRequestReviewComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeletePullRequestReviewCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeletePullRequestReviewCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteRef", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteRef", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "DeleteRefInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteRefPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteRepositoryRuleset", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteRepositoryRuleset", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteRepositoryRulesetInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteRepositoryRulesetPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteTeamDiscussion", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteTeamDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamDiscussionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteTeamDiscussionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteTeamDiscussionComment", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteTeamDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteTeamDiscussionCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteTeamDiscussionCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteUserList", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteUserList", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteUserListInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteUserListPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteVerifiableDomain", - "args": [ - { - "name": "input", - "description": "Parameters for DeleteVerifiableDomain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeleteVerifiableDomainInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DeleteVerifiableDomainPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dequeuePullRequest", - "args": [ - { - "name": "input", - "description": "Parameters for DequeuePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DequeuePullRequestInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DequeuePullRequestPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "disablePullRequestAutoMerge", - "args": [ - { - "name": "input", - "description": "Parameters for DisablePullRequestAutoMerge", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DisablePullRequestAutoMergeInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DisablePullRequestAutoMergePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismissPullRequestReview", - "args": [ - { - "name": "input", - "description": "Parameters for DismissPullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DismissPullRequestReviewInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DismissPullRequestReviewPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismissRepositoryVulnerabilityAlert", - "args": [ - { - "name": "input", - "description": "Parameters for DismissRepositoryVulnerabilityAlert", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DismissRepositoryVulnerabilityAlertInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "DismissRepositoryVulnerabilityAlertPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enablePullRequestAutoMerge", - "args": [ - { - "name": "input", - "description": "Parameters for EnablePullRequestAutoMerge", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EnablePullRequestAutoMergeInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "EnablePullRequestAutoMergePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enqueuePullRequest", - "args": [ - { - "name": "input", - "description": "Parameters for EnqueuePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EnqueuePullRequestInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "EnqueuePullRequestPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "followOrganization", - "args": [ - { - "name": "input", - "description": "Parameters for FollowOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FollowOrganizationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "FollowOrganizationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "followUser", - "args": [ - { - "name": "input", - "description": "Parameters for FollowUser", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "FollowUserInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "FollowUserPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "grantEnterpriseOrganizationsMigratorRole", - "args": [ - { - "name": "input", - "description": "Parameters for GrantEnterpriseOrganizationsMigratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GrantEnterpriseOrganizationsMigratorRoleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "GrantEnterpriseOrganizationsMigratorRolePayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "grantMigratorRole", - "args": [ - { - "name": "input", - "description": "Parameters for GrantMigratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "GrantMigratorRoleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "GrantMigratorRolePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "importProject", - "args": [ - { - "name": "input", - "description": "Parameters for ImportProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImportProjectInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ImportProjectPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "inviteEnterpriseAdmin", - "args": [ - { - "name": "input", - "description": "Parameters for InviteEnterpriseAdmin", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InviteEnterpriseAdminInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "InviteEnterpriseAdminPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "linkProjectV2ToRepository", - "args": [ - { - "name": "input", - "description": "Parameters for LinkProjectV2ToRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LinkProjectV2ToRepositoryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "LinkProjectV2ToRepositoryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "linkProjectV2ToTeam", - "args": [ - { - "name": "input", - "description": "Parameters for LinkProjectV2ToTeam", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LinkProjectV2ToTeamInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "LinkProjectV2ToTeamPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "linkRepositoryToProject", - "args": [ - { - "name": "input", - "description": "Parameters for LinkRepositoryToProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LinkRepositoryToProjectInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "LinkRepositoryToProjectPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockLockable", - "args": [ - { - "name": "input", - "description": "Parameters for LockLockable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "LockLockableInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "LockLockablePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "markDiscussionCommentAsAnswer", - "args": [ - { - "name": "input", - "description": "Parameters for MarkDiscussionCommentAsAnswer", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkDiscussionCommentAsAnswerInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MarkDiscussionCommentAsAnswerPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "markFileAsViewed", - "args": [ - { - "name": "input", - "description": "Parameters for MarkFileAsViewed", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkFileAsViewedInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MarkFileAsViewedPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "markNotificationAsDone", - "args": [ - { - "name": "input", - "description": "Parameters for MarkNotificationAsDone", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkNotificationAsDoneInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MarkNotificationAsDonePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "markProjectV2AsTemplate", - "args": [ - { - "name": "input", - "description": "Parameters for MarkProjectV2AsTemplate", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkProjectV2AsTemplateInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MarkProjectV2AsTemplatePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "markPullRequestReadyForReview", - "args": [ - { - "name": "input", - "description": "Parameters for MarkPullRequestReadyForReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MarkPullRequestReadyForReviewInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MarkPullRequestReadyForReviewPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeBranch", - "args": [ - { - "name": "input", - "description": "Parameters for MergeBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "MergeBranchInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MergeBranchPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergePullRequest", - "args": [ - { - "name": "input", - "description": "Parameters for MergePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MergePullRequestInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MergePullRequestPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizeComment", - "args": [ - { - "name": "input", - "description": "Parameters for MinimizeComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MinimizeCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MinimizeCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "moveProjectCard", - "args": [ - { - "name": "input", - "description": "Parameters for MoveProjectCard", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MoveProjectCardInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MoveProjectCardPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "moveProjectColumn", - "args": [ - { - "name": "input", - "description": "Parameters for MoveProjectColumn", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MoveProjectColumnInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MoveProjectColumnPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinIssue", - "args": [ - { - "name": "input", - "description": "Parameters for PinIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "PinIssueInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "PinIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishSponsorsTier", - "args": [ - { - "name": "input", - "description": "Parameters for PublishSponsorsTier", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PublishSponsorsTierInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "PublishSponsorsTierPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "regenerateEnterpriseIdentityProviderRecoveryCodes", - "args": [ - { - "name": "input", - "description": "Parameters for RegenerateEnterpriseIdentityProviderRecoveryCodes", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "regenerateVerifiableDomainToken", - "args": [ - { - "name": "input", - "description": "Parameters for RegenerateVerifiableDomainToken", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RegenerateVerifiableDomainTokenInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "RegenerateVerifiableDomainTokenPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rejectDeployments", - "args": [ - { - "name": "input", - "description": "Parameters for RejectDeployments", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RejectDeploymentsInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RejectDeploymentsPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeAssigneesFromAssignable", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveAssigneesFromAssignable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveAssigneesFromAssignableInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveAssigneesFromAssignablePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeEnterpriseAdmin", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseAdmin", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseAdminInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveEnterpriseAdminPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeEnterpriseIdentityProvider", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseIdentityProvider", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseIdentityProviderInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveEnterpriseIdentityProviderPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeEnterpriseMember", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseMember", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseMemberInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveEnterpriseMemberPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeEnterpriseOrganization", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseOrganizationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveEnterpriseOrganizationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeEnterpriseSupportEntitlement", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveEnterpriseSupportEntitlement", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseSupportEntitlementInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveEnterpriseSupportEntitlementPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeLabelsFromLabelable", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveLabelsFromLabelable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveLabelsFromLabelableInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveLabelsFromLabelablePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeOutsideCollaborator", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveOutsideCollaborator", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveOutsideCollaboratorInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveOutsideCollaboratorPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeReaction", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveReaction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RemoveReactionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveReactionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeStar", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveStar", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "RemoveStarInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveStarPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removeUpvote", - "args": [ - { - "name": "input", - "description": "Parameters for RemoveUpvote", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "RemoveUpvoteInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RemoveUpvotePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reopenDiscussion", - "args": [ - { - "name": "input", - "description": "Parameters for ReopenDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReopenDiscussionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ReopenDiscussionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reopenIssue", - "args": [ - { - "name": "input", - "description": "Parameters for ReopenIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "ReopenIssueInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ReopenIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reopenPullRequest", - "args": [ - { - "name": "input", - "description": "Parameters for ReopenPullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReopenPullRequestInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ReopenPullRequestPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requestReviews", - "args": [ - { - "name": "input", - "description": "Parameters for RequestReviews", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestReviewsInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RequestReviewsPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rerequestCheckSuite", - "args": [ - { - "name": "input", - "description": "Parameters for RerequestCheckSuite", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RerequestCheckSuiteInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RerequestCheckSuitePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resolveReviewThread", - "args": [ - { - "name": "input", - "description": "Parameters for ResolveReviewThread", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResolveReviewThreadInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ResolveReviewThreadPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "retireSponsorsTier", - "args": [ - { - "name": "input", - "description": "Parameters for RetireSponsorsTier", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RetireSponsorsTierInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RetireSponsorsTierPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "revertPullRequest", - "args": [ - { - "name": "input", - "description": "Parameters for RevertPullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RevertPullRequestInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RevertPullRequestPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "revokeEnterpriseOrganizationsMigratorRole", - "args": [ - { - "name": "input", - "description": "Parameters for RevokeEnterpriseOrganizationsMigratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RevokeEnterpriseOrganizationsMigratorRoleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "RevokeEnterpriseOrganizationsMigratorRolePayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "revokeMigratorRole", - "args": [ - { - "name": "input", - "description": "Parameters for RevokeMigratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RevokeMigratorRoleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RevokeMigratorRolePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "setEnterpriseIdentityProvider", - "args": [ - { - "name": "input", - "description": "Parameters for SetEnterpriseIdentityProvider", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetEnterpriseIdentityProviderInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "SetEnterpriseIdentityProviderPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "setOrganizationInteractionLimit", - "args": [ - { - "name": "input", - "description": "Parameters for SetOrganizationInteractionLimit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetOrganizationInteractionLimitInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "SetOrganizationInteractionLimitPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "setRepositoryInteractionLimit", - "args": [ - { - "name": "input", - "description": "Parameters for SetRepositoryInteractionLimit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetRepositoryInteractionLimitInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "SetRepositoryInteractionLimitPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "setUserInteractionLimit", - "args": [ - { - "name": "input", - "description": "Parameters for SetUserInteractionLimit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SetUserInteractionLimitInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "SetUserInteractionLimitPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startOrganizationMigration", - "args": [ - { - "name": "input", - "description": "Parameters for StartOrganizationMigration", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StartOrganizationMigrationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "StartOrganizationMigrationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startRepositoryMigration", - "args": [ - { - "name": "input", - "description": "Parameters for StartRepositoryMigration", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StartRepositoryMigrationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "StartRepositoryMigrationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "submitPullRequestReview", - "args": [ - { - "name": "input", - "description": "Parameters for SubmitPullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SubmitPullRequestReviewInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "SubmitPullRequestReviewPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "transferEnterpriseOrganization", - "args": [ - { - "name": "input", - "description": "Parameters for TransferEnterpriseOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TransferEnterpriseOrganizationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "TransferEnterpriseOrganizationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "transferIssue", - "args": [ - { - "name": "input", - "description": "Parameters for TransferIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TransferIssueInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "TransferIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unarchiveProjectV2Item", - "args": [ - { - "name": "input", - "description": "Parameters for UnarchiveProjectV2Item", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnarchiveProjectV2ItemInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnarchiveProjectV2ItemPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unarchiveRepository", - "args": [ - { - "name": "input", - "description": "Parameters for UnarchiveRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnarchiveRepositoryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnarchiveRepositoryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unfollowOrganization", - "args": [ - { - "name": "input", - "description": "Parameters for UnfollowOrganization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnfollowOrganizationInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnfollowOrganizationPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unfollowUser", - "args": [ - { - "name": "input", - "description": "Parameters for UnfollowUser", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "UnfollowUserInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnfollowUserPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unlinkProjectV2FromRepository", - "args": [ - { - "name": "input", - "description": "Parameters for UnlinkProjectV2FromRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnlinkProjectV2FromRepositoryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnlinkProjectV2FromRepositoryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unlinkProjectV2FromTeam", - "args": [ - { - "name": "input", - "description": "Parameters for UnlinkProjectV2FromTeam", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnlinkProjectV2FromTeamInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnlinkProjectV2FromTeamPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unlinkRepositoryFromProject", - "args": [ - { - "name": "input", - "description": "Parameters for UnlinkRepositoryFromProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnlinkRepositoryFromProjectInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnlinkRepositoryFromProjectPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unlockLockable", - "args": [ - { - "name": "input", - "description": "Parameters for UnlockLockable", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnlockLockableInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnlockLockablePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unmarkDiscussionCommentAsAnswer", - "args": [ - { - "name": "input", - "description": "Parameters for UnmarkDiscussionCommentAsAnswer", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnmarkDiscussionCommentAsAnswerInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UnmarkDiscussionCommentAsAnswerPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unmarkFileAsViewed", - "args": [ - { - "name": "input", - "description": "Parameters for UnmarkFileAsViewed", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnmarkFileAsViewedInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnmarkFileAsViewedPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unmarkIssueAsDuplicate", - "args": [ - { - "name": "input", - "description": "Parameters for UnmarkIssueAsDuplicate", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnmarkIssueAsDuplicateInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnmarkIssueAsDuplicatePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unmarkProjectV2AsTemplate", - "args": [ - { - "name": "input", - "description": "Parameters for UnmarkProjectV2AsTemplate", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnmarkProjectV2AsTemplateInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnmarkProjectV2AsTemplatePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unminimizeComment", - "args": [ - { - "name": "input", - "description": "Parameters for UnminimizeComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnminimizeCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnminimizeCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unpinIssue", - "args": [ - { - "name": "input", - "description": "Parameters for UnpinIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "UnpinIssueInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnpinIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unresolveReviewThread", - "args": [ - { - "name": "input", - "description": "Parameters for UnresolveReviewThread", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnresolveReviewThreadInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnresolveReviewThreadPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unsubscribeFromNotifications", - "args": [ - { - "name": "input", - "description": "Parameters for UnsubscribeFromNotifications", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsubscribeFromNotificationsInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UnsubscribeFromNotificationsPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateBranchProtectionRule", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateBranchProtectionRule", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateBranchProtectionRuleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateBranchProtectionRulePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateCheckRun", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateCheckRun", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCheckRunInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateCheckRunPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateCheckSuitePreferences", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateCheckSuitePreferences", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateCheckSuitePreferencesInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateCheckSuitePreferencesPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateDiscussion", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateDiscussionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateDiscussionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateDiscussionComment", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateDiscussionCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateDiscussionCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseAdministratorRole", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseAdministratorRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseAdministratorRoleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseAdministratorRolePayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseAllowPrivateRepositoryForkingSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseAllowPrivateRepositoryForkingSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseDefaultRepositoryPermissionSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseDefaultRepositoryPermissionSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseMembersCanCreateRepositoriesSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanCreateRepositoriesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseMembersCanDeleteIssuesSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanDeleteIssuesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseMembersCanDeleteRepositoriesSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanDeleteRepositoriesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseMembersCanInviteCollaboratorsSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanInviteCollaboratorsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseMembersCanMakePurchasesSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanMakePurchasesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanMakePurchasesSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanMakePurchasesSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseMembersCanUpdateProtectedBranchesSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseMembersCanViewDependencyInsightsSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseMembersCanViewDependencyInsightsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseOrganizationProjectsSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseOrganizationProjectsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseOrganizationProjectsSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseOrganizationProjectsSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseOwnerOrganizationRole", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseOwnerOrganizationRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseOwnerOrganizationRoleInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseOwnerOrganizationRolePayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseProfile", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseProfile", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseProfileInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateEnterpriseProfilePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseRepositoryProjectsSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseRepositoryProjectsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseRepositoryProjectsSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseRepositoryProjectsSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseTeamDiscussionsSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseTeamDiscussionsSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseTeamDiscussionsSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseTeamDiscussionsSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnterpriseTwoFactorAuthenticationRequiredSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateEnvironment", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateEnvironment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateEnvironmentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateEnvironmentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateIpAllowListEnabledSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateIpAllowListEnabledSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListEnabledSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateIpAllowListEnabledSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateIpAllowListEntry", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateIpAllowListEntry", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListEntryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateIpAllowListEntryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateIpAllowListForInstalledAppsEnabledSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateIpAllowListForInstalledAppsEnabledSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListForInstalledAppsEnabledSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateIpAllowListForInstalledAppsEnabledSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateIssue", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateIssueInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateIssueComment", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateIssueComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateIssueCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateIssueCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateLabel", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateLabel", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateLabelInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateLabelPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateNotificationRestrictionSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateNotificationRestrictionSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateNotificationRestrictionSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateNotificationRestrictionSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateOrganizationAllowPrivateRepositoryForkingSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateOrganizationAllowPrivateRepositoryForkingSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateOrganizationWebCommitSignoffSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateOrganizationWebCommitSignoffSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationWebCommitSignoffSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateOrganizationWebCommitSignoffSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatePatreonSponsorability", - "args": [ - { - "name": "input", - "description": "Parameters for UpdatePatreonSponsorability", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePatreonSponsorabilityInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdatePatreonSponsorabilityPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateProject", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateProject", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateProjectPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateProjectCard", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectCard", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectCardInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateProjectCardPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateProjectColumn", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectColumn", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectColumnInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateProjectColumnPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateProjectV2", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2Input", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateProjectV2Payload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateProjectV2Collaborators", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2Collaborators", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2CollaboratorsInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateProjectV2CollaboratorsPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateProjectV2DraftIssue", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2DraftIssue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2DraftIssueInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateProjectV2DraftIssuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateProjectV2ItemFieldValue", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2ItemFieldValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2ItemFieldValueInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateProjectV2ItemFieldValuePayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateProjectV2ItemPosition", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateProjectV2ItemPosition", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2ItemPositionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateProjectV2ItemPositionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatePullRequest", - "args": [ - { - "name": "input", - "description": "Parameters for UpdatePullRequest", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdatePullRequestPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatePullRequestBranch", - "args": [ - { - "name": "input", - "description": "Parameters for UpdatePullRequestBranch", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestBranchInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdatePullRequestBranchPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatePullRequestReview", - "args": [ - { - "name": "input", - "description": "Parameters for UpdatePullRequestReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestReviewInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdatePullRequestReviewPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatePullRequestReviewComment", - "args": [ - { - "name": "input", - "description": "Parameters for UpdatePullRequestReviewComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestReviewCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdatePullRequestReviewCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateRef", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateRef", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateRefInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateRefPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateRefs", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateRefs", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateRefsInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateRefsPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateRepository", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateRepositoryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateRepositoryRuleset", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateRepositoryRuleset", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryRulesetInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateRepositoryRulesetPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateRepositoryWebCommitSignoffSetting", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateRepositoryWebCommitSignoffSetting", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryWebCommitSignoffSettingInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateRepositoryWebCommitSignoffSettingPayload", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateSponsorshipPreferences", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateSponsorshipPreferences", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateSponsorshipPreferencesInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateSponsorshipPreferencesPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateSubscription", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateSubscription", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateSubscriptionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateSubscriptionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateTeamDiscussion", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateTeamDiscussion", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamDiscussionInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateTeamDiscussionPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateTeamDiscussionComment", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateTeamDiscussionComment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamDiscussionCommentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateTeamDiscussionCommentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateTeamReviewAssignment", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateTeamReviewAssignment", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamReviewAssignmentInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateTeamReviewAssignmentPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateTeamsRepository", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateTeamsRepository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamsRepositoryInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateTeamsRepositoryPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateTopics", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateTopics", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "UpdateTopicsInput", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateTopicsPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateUserList", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateUserList", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateUserListInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateUserListPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updateUserListsForItem", - "args": [ - { - "name": "input", - "description": "Parameters for UpdateUserListsForItem", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateUserListsForItemInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "UpdateUserListsForItemPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "verifyVerifiableDomain", - "args": [ - { - "name": "input", - "description": "Parameters for VerifyVerifiableDomain", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VerifyVerifiableDomainInput", - "ofType": None, - }, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "VerifyVerifiableDomainPayload", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Node", - "description": "An object with an ID.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "AddedToMergeQueueEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AddedToProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "App", "ofType": None}, - {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutoMergeDisabledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutoMergeEnabledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutoRebaseEnabledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutoSquashEnabledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutomaticBaseChangeFailedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutomaticBaseChangeSucceededEvent", "ofType": None}, - {"kind": "OBJECT", "name": "BaseRefChangedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "BaseRefDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "BaseRefForcePushedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Blob", "ofType": None}, - {"kind": "OBJECT", "name": "Bot", "ofType": None}, - {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - {"kind": "OBJECT", "name": "BypassForcePushAllowance", "ofType": None}, - {"kind": "OBJECT", "name": "BypassPullRequestAllowance", "ofType": None}, - {"kind": "OBJECT", "name": "CWE", "ofType": None}, - {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, - {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, - {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "CodeOfConduct", "ofType": None}, - {"kind": "OBJECT", "name": "CommentDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Commit", "ofType": None}, - {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - {"kind": "OBJECT", "name": "CommitCommentThread", "ofType": None}, - {"kind": "OBJECT", "name": "Comparison", "ofType": None}, - {"kind": "OBJECT", "name": "ConnectedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertToDraftEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertedNoteToIssueEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertedToDiscussionEvent", "ofType": None}, - {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DependencyGraphManifest", "ofType": None}, - {"kind": "OBJECT", "name": "DeployKey", "ofType": None}, - {"kind": "OBJECT", "name": "DeployedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - {"kind": "OBJECT", "name": "DeploymentEnvironmentChangedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DeploymentReview", "ofType": None}, - {"kind": "OBJECT", "name": "DeploymentStatus", "ofType": None}, - {"kind": "OBJECT", "name": "DisconnectedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionPoll", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionPollOption", "ofType": None}, - {"kind": "OBJECT", "name": "DraftIssue", "ofType": None}, - {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseRepositoryInfo", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseServerInstallation", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseServerUserAccount", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseServerUserAccountEmail", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseServerUserAccountsUpload", "ofType": None}, - {"kind": "OBJECT", "name": "EnterpriseUserAccount", "ofType": None}, - {"kind": "OBJECT", "name": "Environment", "ofType": None}, - {"kind": "OBJECT", "name": "ExternalIdentity", "ofType": None}, - {"kind": "OBJECT", "name": "Gist", "ofType": None}, - {"kind": "OBJECT", "name": "GistComment", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefForcePushedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefRestoredEvent", "ofType": None}, - {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "Label", "ofType": None}, - {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Language", "ofType": None}, - {"kind": "OBJECT", "name": "License", "ofType": None}, - {"kind": "OBJECT", "name": "LinkedBranch", "ofType": None}, - {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - {"kind": "OBJECT", "name": "MarkedAsDuplicateEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, - {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, - {"kind": "OBJECT", "name": "MemberFeatureRequestNotification", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MentionedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, - {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MergedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MigrationSource", "ofType": None}, - {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MovedColumnsInProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "OIDCProvider", "ofType": None}, - {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgAddBillingManagerAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgBlockUserAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableOauthAppRestrictionsAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableSamlAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableTwoFactorRequirementAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableOauthAppRestrictionsAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableSamlAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableTwoFactorRequirementAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveBillingManagerAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveOutsideCollaboratorAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRestoreMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUnblockUserAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUpdateMemberAuditEntry", "ofType": None}, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "ofType": None, - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "ofType": None, - }, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "OrganizationIdentityProvider", "ofType": None}, - {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - {"kind": "OBJECT", "name": "OrganizationMigration", "ofType": None}, - {"kind": "OBJECT", "name": "Package", "ofType": None}, - {"kind": "OBJECT", "name": "PackageFile", "ofType": None}, - {"kind": "OBJECT", "name": "PackageTag", "ofType": None}, - {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, - {"kind": "OBJECT", "name": "PinnedDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "PinnedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "PinnedIssue", "ofType": None}, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "Project", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldDateValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldIterationValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldNumberValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldSingleSelectValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldTextValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2IterationField", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2SingleSelectField", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2View", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2Workflow", "ofType": None}, - {"kind": "OBJECT", "name": "PublicKey", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestCommitCommentThread", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestThread", "ofType": None}, - {"kind": "OBJECT", "name": "Push", "ofType": None}, - {"kind": "OBJECT", "name": "PushAllowance", "ofType": None}, - {"kind": "OBJECT", "name": "Reaction", "ofType": None}, - {"kind": "OBJECT", "name": "ReadyForReviewEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Ref", "ofType": None}, - {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Release", "ofType": None}, - {"kind": "OBJECT", "name": "ReleaseAsset", "ofType": None}, - {"kind": "OBJECT", "name": "RemovedFromMergeQueueEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RemovedFromProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryInvitation", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryRule", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryRulesetBypassActor", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryTopic", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewDismissalAllowance", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewDismissedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewRequest", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewRequestRemovedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewRequestedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "SavedReply", "ofType": None}, - {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, - {"kind": "OBJECT", "name": "SponsorsActivity", "ofType": None}, - {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - {"kind": "OBJECT", "name": "SponsorsListingFeaturedItem", "ofType": None}, - {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - {"kind": "OBJECT", "name": "SponsorshipNewsletter", "ofType": None}, - {"kind": "OBJECT", "name": "Status", "ofType": None}, - {"kind": "OBJECT", "name": "StatusCheckRollup", "ofType": None}, - {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, - {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Tag", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "Topic", "ofType": None}, - {"kind": "OBJECT", "name": "TransferredEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Tree", "ofType": None}, - {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnmarkedAsDuplicateEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnpinnedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UserContentEdit", "ofType": None}, - {"kind": "OBJECT", "name": "UserList", "ofType": None}, - {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, - {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, - {"kind": "OBJECT", "name": "Workflow", "ofType": None}, - {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, - {"kind": "OBJECT", "name": "WorkflowRunFile", "ofType": None}, - ], - }, - { - "kind": "ENUM", - "name": "NotificationRestrictionSettingValue", - "description": "The possible values for the notification restriction setting.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ENABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OIDCProvider", - "description": "An OIDC identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.", - "fields": [ - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "externalIdentities", - "args": [ - { - "name": "membersOnly", - "description": "Filter to external identities with valid org membership only", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "login", - "description": "Filter to external identities with the users login", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userName", - "description": "Filter to external identities with the users userName/NameID attribute", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ExternalIdentityConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "providerType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OIDCProviderType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tenantId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OIDCProviderType", - "description": "The OIDC identity provider type", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "AAD", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "OauthApplicationAuditEntryData", - "description": "Metadata for an audit entry with action oauth_application.*", - "fields": [ - { - "name": "oauthApplicationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "OauthApplicationCreateAuditEntry", - "description": "Audit log entry for a oauth_application.create event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "applicationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "callbackUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rateLimit", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": {"kind": "ENUM", "name": "OauthApplicationCreateAuditEntryState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OauthApplicationCreateAuditEntryState", - "description": "The state of an OAuth application when it was created.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ACTIVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUSPENDED", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING_DELETION", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OperationType", - "description": "The corresponding operation type for the action", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ACCESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "AUTHENTICATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "MODIFY", "isDeprecated": False, "deprecationReason": None}, - {"name": "REMOVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "RESTORE", "isDeprecated": False, "deprecationReason": None}, - {"name": "TRANSFER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrderDirection", - "description": "Possible directions in which to order a list of items when provided an `orderBy` argument.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ASC", "isDeprecated": False, "deprecationReason": None}, - {"name": "DESC", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgAddBillingManagerAuditEntry", - "description": "Audit log entry for a org.add_billing_manager", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitationEmail", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgAddMemberAuditEntry", - "description": "Audit log entry for a org.add_member", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permission", - "args": [], - "type": {"kind": "ENUM", "name": "OrgAddMemberAuditEntryPermission", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgAddMemberAuditEntryPermission", - "description": "The permissions available to members on an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "READ", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgBlockUserAuditEntry", - "description": "Audit log entry for a org.block_user", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockedUser", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockedUserName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockedUserResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockedUserUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", - "description": "Audit log entry for a org.config.disable_collaborators_only event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", - "description": "Audit log entry for a org.config.enable_collaborators_only event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgCreateAuditEntry", - "description": "Audit log entry for a org.create event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "billingPlan", - "args": [], - "type": {"kind": "ENUM", "name": "OrgCreateAuditEntryBillingPlan", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgCreateAuditEntryBillingPlan", - "description": "The billing plans available for organizations.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "FREE", "isDeprecated": False, "deprecationReason": None}, - {"name": "BUSINESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "BUSINESS_PLUS", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNLIMITED", "isDeprecated": False, "deprecationReason": None}, - {"name": "TIERED_PER_SEAT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgDisableOauthAppRestrictionsAuditEntry", - "description": "Audit log entry for a org.disable_oauth_app_restrictions event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgDisableSamlAuditEntry", - "description": "Audit log entry for a org.disable_saml event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "digestMethodUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issuerUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signatureMethodUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "singleSignOnUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgDisableTwoFactorRequirementAuditEntry", - "description": "Audit log entry for a org.disable_two_factor_requirement event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgEnableOauthAppRestrictionsAuditEntry", - "description": "Audit log entry for a org.enable_oauth_app_restrictions event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgEnableSamlAuditEntry", - "description": "Audit log entry for a org.enable_saml event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "digestMethodUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issuerUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signatureMethodUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "singleSignOnUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgEnableTwoFactorRequirementAuditEntry", - "description": "Audit log entry for a org.enable_two_factor_requirement event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "OrgEnterpriseOwnerOrder", - "description": "Ordering options for an organization's enterprise owner connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrgEnterpriseOwnerOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgEnterpriseOwnerOrderField", - "description": "Properties by which enterprise owners can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgInviteMemberAuditEntry", - "description": "Audit log entry for a org.invite_member event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationInvitation", - "args": [], - "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgInviteToBusinessAuditEntry", - "description": "Audit log entry for a org.invite_to_business event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessApprovedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_approved event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessBlockedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_blocked event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessDeniedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_denied event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessRequestedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_requested event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgOauthAppAccessUnblockedAuditEntry", - "description": "Audit log entry for a org.oauth_app_access_unblocked event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oauthApplicationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OauthApplicationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgRemoveBillingManagerAuditEntry", - "description": "Audit log entry for a org.remove_billing_manager event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reason", - "args": [], - "type": {"kind": "ENUM", "name": "OrgRemoveBillingManagerAuditEntryReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgRemoveBillingManagerAuditEntryReason", - "description": "The reason a billing manager was removed from an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE", - "isDeprecated": False, - "deprecationReason": None, - }, - {"name": "SAML_EXTERNAL_IDENTITY_MISSING", "isDeprecated": False, "deprecationReason": None}, - { - "name": "SAML_SSO_ENFORCEMENT_REQUIRES_EXTERNAL_IDENTITY", - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgRemoveMemberAuditEntry", - "description": "Audit log entry for a org.remove_member event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membershipTypes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrgRemoveMemberAuditEntryMembershipType", - "ofType": None, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reason", - "args": [], - "type": {"kind": "ENUM", "name": "OrgRemoveMemberAuditEntryReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgRemoveMemberAuditEntryMembershipType", - "description": "The type of membership a user has with an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "SUSPENDED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DIRECT_MEMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNAFFILIATED", "isDeprecated": False, "deprecationReason": None}, - {"name": "OUTSIDE_COLLABORATOR", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgRemoveMemberAuditEntryReason", - "description": "The reason a member was removed from an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE", - "isDeprecated": False, - "deprecationReason": None, - }, - {"name": "SAML_EXTERNAL_IDENTITY_MISSING", "isDeprecated": False, "deprecationReason": None}, - { - "name": "SAML_SSO_ENFORCEMENT_REQUIRES_EXTERNAL_IDENTITY", - "isDeprecated": False, - "deprecationReason": None, - }, - {"name": "USER_ACCOUNT_DELETED", "isDeprecated": False, "deprecationReason": None}, - {"name": "TWO_FACTOR_ACCOUNT_RECOVERY", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgRemoveOutsideCollaboratorAuditEntry", - "description": "Audit log entry for a org.remove_outside_collaborator event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membershipTypes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "OrgRemoveOutsideCollaboratorAuditEntryMembershipType", - "ofType": None, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reason", - "args": [], - "type": { - "kind": "ENUM", - "name": "OrgRemoveOutsideCollaboratorAuditEntryReason", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgRemoveOutsideCollaboratorAuditEntryMembershipType", - "description": "The type of membership a user has with an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OUTSIDE_COLLABORATOR", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNAFFILIATED", "isDeprecated": False, "deprecationReason": None}, - {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgRemoveOutsideCollaboratorAuditEntryReason", - "description": "The reason an outside collaborator was removed from an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "TWO_FACTOR_REQUIREMENT_NON_COMPLIANCE", - "isDeprecated": False, - "deprecationReason": None, - }, - {"name": "SAML_EXTERNAL_IDENTITY_MISSING", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberAuditEntry", - "description": "Audit log entry for a org.restore_member event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restoredCustomEmailRoutingsCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restoredIssueAssignmentsCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restoredMemberships", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "UNION", - "name": "OrgRestoreMemberAuditEntryMembership", - "ofType": None, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restoredMembershipsCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restoredRepositoriesCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restoredRepositoryStarsCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "restoredRepositoryWatchesCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "OrgRestoreMemberAuditEntryMembership", - "description": "Types of memberships that can be restored for an Organization member.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", - "ofType": None, - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", - "ofType": None, - }, - {"kind": "OBJECT", "name": "OrgRestoreMemberMembershipTeamAuditEntryData", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", - "description": "Metadata for an organization membership for org.restore_member actions", - "fields": [ - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", - "description": "Metadata for a repository membership for org.restore_member actions", - "fields": [ - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipTeamAuditEntryData", - "description": "Metadata for a team membership for org.restore_member actions", - "fields": [ - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgUnblockUserAuditEntry", - "description": "Audit log entry for a org.unblock_user", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockedUser", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockedUserName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockedUserResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockedUserUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", - "description": "Audit log entry for a org.update_default_repository_permission", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permission", - "args": [], - "type": { - "kind": "ENUM", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permissionWas", - "args": [], - "type": { - "kind": "ENUM", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission", - "description": "The default permission a repository can have in an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "READ", "isDeprecated": False, "deprecationReason": None}, - {"name": "WRITE", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberAuditEntry", - "description": "Audit log entry for a org.update_member event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permission", - "args": [], - "type": {"kind": "ENUM", "name": "OrgUpdateMemberAuditEntryPermission", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permissionWas", - "args": [], - "type": {"kind": "ENUM", "name": "OrgUpdateMemberAuditEntryPermission", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgUpdateMemberAuditEntryPermission", - "description": "The permissions available to members on an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "READ", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "description": "Audit log entry for a org.update_member_repository_creation_permission event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "canCreateRepositories", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": { - "kind": "ENUM", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility", - "description": "The permissions available for repository creation on an Organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC_INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE_INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC_PRIVATE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "description": "Audit log entry for a org.update_member_repository_invitation_permission event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "canInviteOutsideCollaboratorsToRepositories", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Organization", - "description": "An account on GitHub, with one or more owners, that has repositories, members and teams.", - "fields": [ - { - "name": "announcement", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "announcementExpiresAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "announcementUserDismissible", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "anyPinnableItems", - "args": [ - { - "name": "type", - "description": "Filter to only a particular kind of pinnable item.", - "type": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "archivedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "auditLog", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "The query string to filter audit entries", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the returned audit log entries.", - "type": {"kind": "INPUT_OBJECT", "name": "AuditLogOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationAuditEntryConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "descriptionHTML", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "domains", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isVerified", - "description": "Filter by if the domain is verified.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "isApproved", - "description": "Filter by if the domain is approved.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "orderBy", - "description": "Ordering options for verifiable domains returned.", - "type": {"kind": "INPUT_OBJECT", "name": "VerifiableDomainOrder", "ofType": None}, - "defaultValue": "{field: DOMAIN, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "VerifiableDomainConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseOwners", - "args": [ - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationRole", - "description": "The organization role to filter by.", - "type": {"kind": "ENUM", "name": "RoleInOrganization", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for enterprise owners returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "OrgEnterpriseOwnerOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationEnterpriseOwnerConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "estimatedNextSponsorsPayoutInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasSponsorsListing", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "interactionAbility", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryInteractionAbility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListEnabledSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IpAllowListEnabledSettingValue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListEntries", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for IP allow list entries returned.", - "type": {"kind": "INPUT_OBJECT", "name": "IpAllowListEntryOrder", "ofType": None}, - "defaultValue": "{field: ALLOW_LIST_VALUE, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IpAllowListEntryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListForInstalledAppsEnabledSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListForInstalledAppsEnabledSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSponsoredBy", - "args": [ - { - "name": "accountLogin", - "description": "The target account's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSponsoringViewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isVerified", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "itemShowcase", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProfileItemShowcase", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lifetimeReceivedSponsorshipValues", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for results returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorAndLifetimeValueOrder", - "ofType": None, - }, - "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "location", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mannequins", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "login", - "description": "Filter mannequins by login.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for mannequins returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "MannequinOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MannequinConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "memberStatuses", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for user statuses returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "UserStatusOrder", "ofType": None}, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserStatusConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersCanForkPrivateRepositories", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersWithRole", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationMemberConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "monthlyEstimatedSponsorsIncomeInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "newTeamResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "newTeamUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "notificationDeliveryRestrictionEnabledSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "NotificationRestrictionSettingValue", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationBillingEmail", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "packages", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "names", - "description": "Find packages by their names.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "description": "Find packages in a repository by ID.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "packageType", - "description": "Filter registry package by type.", - "type": {"kind": "ENUM", "name": "PackageType", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": {"kind": "INPUT_OBJECT", "name": "PackageOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pendingMembers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnableItems", - "args": [ - { - "name": "types", - "description": "Filter the types of pinnable items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedItems", - "args": [ - { - "name": "types", - "description": "Filter the types of pinned items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedItemsRemaining", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [ - { - "name": "number", - "description": "The project number to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projects", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for projects returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "search", - "description": "Query to search projects by, currently only searching by name.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the projects by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsV2", - "args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, - "defaultValue": "{field: NUMBER, direction: DESC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "recentProjects", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositories", - "args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": "[OWNER, COLLABORATOR]", - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isArchived", - "description": "If non-null, filters repositories according to whether they are archived and not maintained", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isFork", - "description": "If non-null, filters repositories according to whether they are forks of another repository", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [ - { - "name": "name", - "description": "Name of Repository to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "followRenames", - "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryDiscussionComments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "description": "Filter discussion comments to only those in a specific repository.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "onlyAnswers", - "description": "Filter discussion comments to only those that were marked as the answer", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryDiscussions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for discussions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "DiscussionOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - { - "name": "repositoryId", - "description": "Filter discussions to only those in a specific repository.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "answered", - "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "states", - "description": "A list of states to filter the discussions by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DiscussionState", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryMigrations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "state", - "description": "Filter repository migrations by state.", - "type": {"kind": "ENUM", "name": "MigrationState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryName", - "description": "Filter repository migrations by repository name.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repository migrations returned.", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryMigrationOrder", - "ofType": None, - }, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryMigrationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresTwoFactorAuthentication", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ruleset", - "args": [ - { - "name": "databaseId", - "description": "The ID of the ruleset to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rulesets", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "includeParents", - "description": "Return rulesets configured at higher levels that apply to this organization", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": {"kind": "OBJECT", "name": "RepositoryRulesetConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "samlIdentityProvider", - "args": [], - "type": {"kind": "OBJECT", "name": "OrganizationIdentityProvider", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsoring", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the users and organizations returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, - "defaultValue": "{field: RELEVANCE, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsors", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "tierId", - "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsors returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, - "defaultValue": "{field: RELEVANCE, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsActivities", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "period", - "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", - "type": {"kind": "ENUM", "name": "SponsorsActivityPeriod", "ofType": None}, - "defaultValue": "MONTH", - }, - { - "name": "since", - "description": "Filter activities to those that occurred on or after this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "until", - "description": "Filter activities to those that occurred before this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for activity returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorsActivityOrder", "ofType": None}, - "defaultValue": "{field: TIMESTAMP, direction: DESC}", - }, - { - "name": "actions", - "description": "Filter activities to only the specified actions.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "ofType": None, - }, - }, - }, - "defaultValue": "[]", - }, - { - "name": "includeAsSponsor", - "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "includePrivate", - "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsActivityConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsListing", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipForViewerAsSponsor", - "args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - } - ], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipForViewerAsSponsorable", - "args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - } - ], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipNewsletters", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorship updates returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipNewsletterOrder", - "ofType": None, - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletterConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipsAsMaintainer", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "includePrivate", - "description": "Whether or not to include private sponsorships in the result set", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipsAsSponsor", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "maintainerLogins", - "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [ - { - "name": "slug", - "description": "The name or slug of the team to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teams", - "args": [ - { - "name": "privacy", - "description": "If non-null, filters teams according to privacy", - "type": {"kind": "ENUM", "name": "TeamPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "notificationSetting", - "description": "If non-null, filters teams according to notification setting", - "type": {"kind": "ENUM", "name": "TeamNotificationSetting", "ofType": None}, - "defaultValue": None, - }, - { - "name": "role", - "description": "If non-null, filters teams according to whether the viewer is an admin or member on team", - "type": {"kind": "ENUM", "name": "TeamRole", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "If non-null, filters teams with query on team name and team slug", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userLogins", - "description": "User logins to filter by", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for teams returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "TeamOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ldapMapped", - "description": "If true, filters teams that are mapped to an LDAP Group (Enterprise only)", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "rootTeamsOnly", - "description": "If true, restrict to only root teams", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalSponsorshipAmountAsSponsorInCents", - "args": [ - { - "name": "since", - "description": "Filter payments to those that occurred on or after this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "until", - "description": "Filter payments to those that occurred before this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogins", - "description": "Filter payments to those made to the users or organizations with the specified usernames.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - ], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "twitterUsername", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanAdminister", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanChangePinnedItems", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanCreateProjects", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanCreateRepositories", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanCreateTeams", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSponsor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerIsAMember", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerIsFollowing", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerIsSponsoring", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "webCommitSignoffRequired", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "websiteUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - {"kind": "INTERFACE", "name": "AnnouncementBanner", "ofType": None}, - {"kind": "INTERFACE", "name": "MemberStatusable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "PackageOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProfileOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2Recent", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryDiscussionAuthor", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryDiscussionCommentAuthor", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "OrganizationAuditEntry", - "description": "An audit entry in an organization audit log.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgAddBillingManagerAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgBlockUserAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableOauthAppRestrictionsAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableSamlAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableTwoFactorRequirementAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableOauthAppRestrictionsAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableSamlAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableTwoFactorRequirementAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveBillingManagerAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveOutsideCollaboratorAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRestoreMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUnblockUserAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUpdateMemberAuditEntry", "ofType": None}, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "ofType": None, - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "ofType": None, - }, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "OrganizationAuditEntryConnection", - "description": "The connection type for OrganizationAuditEntry.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationAuditEntryEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "OrganizationAuditEntry", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "OrganizationAuditEntryData", - "description": "Metadata for an audit entry with action org.*", - "fields": [ - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "MembersCanDeleteReposClearAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "MembersCanDeleteReposEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OauthApplicationCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgAddBillingManagerAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgBlockUserAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableOauthAppRestrictionsAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableSamlAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgDisableTwoFactorRequirementAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableOauthAppRestrictionsAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableSamlAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgEnableTwoFactorRequirementAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgInviteToBusinessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessApprovedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessBlockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessDeniedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessRequestedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgOauthAppAccessUnblockedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveBillingManagerAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRemoveOutsideCollaboratorAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgRestoreMemberAuditEntry", "ofType": None}, - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipOrganizationAuditEntryData", - "ofType": None, - }, - {"kind": "OBJECT", "name": "OrgUnblockUserAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUpdateDefaultRepositoryPermissionAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "OrgUpdateMemberAuditEntry", "ofType": None}, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryCreationPermissionAuditEntry", - "ofType": None, - }, - { - "kind": "OBJECT", - "name": "OrgUpdateMemberRepositoryInvitationPermissionAuditEntry", - "ofType": None, - }, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVisibilityChangeEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "OrganizationAuditEntryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "OrganizationAuditEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationConnection", - "description": "A list of organizations managed by an enterprise.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationEnterpriseOwnerConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationEnterpriseOwnerEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationEnterpriseOwnerEdge", - "description": "An enterprise owner in the context of an organization that is part of the enterprise.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationRole", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RoleInOrganization", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationIdentityProvider", - "description": "An Identity Provider configured to provision SAML and SCIM identities for Organizations. Visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members.", - "fields": [ - { - "name": "digestMethod", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "externalIdentities", - "args": [ - { - "name": "membersOnly", - "description": "Filter to external identities with valid org membership only", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "login", - "description": "Filter to external identities with the users login", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userName", - "description": "Filter to external identities with the users userName/NameID attribute", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ExternalIdentityConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "idpCertificate", - "args": [], - "type": {"kind": "SCALAR", "name": "X509Certificate", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issuer", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signatureMethod", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ssoUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationInvitation", - "description": "An Invitation for a user to an organization.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitationSource", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrganizationInvitationSource", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitationType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrganizationInvitationType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitee", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "inviter", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "`inviter` will be removed. `inviter` will be replaced by `inviterActor`. Removal on 2024-07-01 UTC.", - }, - { - "name": "inviterActor", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "role", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrganizationInvitationRole", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationInvitationConnection", - "description": "The connection type for OrganizationInvitation.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationInvitationEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationInvitationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "OrganizationInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrganizationInvitationRole", - "description": "The possible organization invitation roles.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DIRECT_MEMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "BILLING_MANAGER", "isDeprecated": False, "deprecationReason": None}, - {"name": "REINSTATE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrganizationInvitationSource", - "description": "The possible organization invitation sources.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "UNKNOWN", "isDeprecated": False, "deprecationReason": None}, - {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "SCIM", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrganizationInvitationType", - "description": "The possible organization invitation types.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "USER", "isDeprecated": False, "deprecationReason": None}, - {"name": "EMAIL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationMemberConnection", - "description": "A list of users who belong to the organization.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationMemberEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationMemberEdge", - "description": "Represents a user within an organization.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasTwoFactorEnabled", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "role", - "args": [], - "type": {"kind": "ENUM", "name": "OrganizationMemberRole", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrganizationMemberRole", - "description": "The possible roles within an organization for its members.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrganizationMembersCanCreateRepositoriesSettingValue", - "description": "The possible values for the members can create repositories setting on an organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationMigration", - "description": "A GitHub Enterprise Importer (GEI) organization migration.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "failureReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "remainingRepositoriesCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sourceOrgName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sourceOrgUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrganizationMigrationState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "targetOrgName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalRepositoriesCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrganizationMigrationState", - "description": "The Octoshift Organization migration state.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NOT_STARTED", "isDeprecated": False, "deprecationReason": None}, - {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRE_REPO_MIGRATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "REPO_MIGRATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "POST_REPO_MIGRATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUCCEEDED", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILED", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING_VALIDATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILED_VALIDATION", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "OrganizationOrUser", - "description": "Used for argument of CreateProjectV2 mutation.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "OrganizationOrder", - "description": "Ordering options for organization connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrganizationOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "OrganizationOrderField", - "description": "Properties by which organization connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationTeamsHovercardContext", - "description": "An organization teams hovercard context", - "fields": [ - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "octicon", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "relevantTeams", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalTeamCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "OrganizationsHovercardContext", - "description": "An organization list hovercard context", - "fields": [ - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "octicon", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "relevantOrganizations", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for the User's organizations.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalOrganizationCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Package", - "description": "Information for an uploaded package.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "latestVersion", - "args": [], - "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "packageType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PackageType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "statistics", - "args": [], - "type": {"kind": "OBJECT", "name": "PackageStatistics", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "version", - "args": [ - { - "name": "version", - "description": "The package version.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "versions", - "args": [ - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": {"kind": "INPUT_OBJECT", "name": "PackageVersionOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageVersionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageConnection", - "description": "The connection type for Package.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Package", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Package", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageFile", - "description": "A file in a package version.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "md5", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "packageVersion", - "args": [], - "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sha1", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sha256", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "size", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageFileConnection", - "description": "The connection type for PackageFile.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageFileEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageFile", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageFileEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PackageFile", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "PackageFileOrder", - "description": "Ways in which lists of package files can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": {"kind": "ENUM", "name": "PackageFileOrderField", "ofType": None}, - "defaultValue": None, - }, - { - "name": "direction", - "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PackageFileOrderField", - "description": "Properties by which package file connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "PackageOrder", - "description": "Ways in which lists of packages can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": {"kind": "ENUM", "name": "PackageOrderField", "ofType": None}, - "defaultValue": None, - }, - { - "name": "direction", - "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PackageOrderField", - "description": "Properties by which package connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "PackageOwner", - "description": "Represents an owner of a package.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "packages", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "names", - "description": "Find packages by their names.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "description": "Find packages in a repository by ID.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "packageType", - "description": "Filter registry package by type.", - "type": {"kind": "ENUM", "name": "PackageType", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": {"kind": "INPUT_OBJECT", "name": "PackageOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "PackageStatistics", - "description": "Represents a object that contains package activity statistics such as downloads.", - "fields": [ - { - "name": "downloadsTotalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageTag", - "description": "A version tag contains the mapping between a tag name and a version.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "version", - "args": [], - "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PackageType", - "description": "The possible types of a package.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NPM", - "isDeprecated": True, - "deprecationReason": "NPM will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC.", - }, - { - "name": "RUBYGEMS", - "isDeprecated": True, - "deprecationReason": "RUBYGEMS will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-12-28 UTC.", - }, - { - "name": "MAVEN", - "isDeprecated": True, - "deprecationReason": "MAVEN will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2023-02-10 UTC.", - }, - { - "name": "DOCKER", - "isDeprecated": True, - "deprecationReason": "DOCKER will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2021-06-21 UTC.", - }, - {"name": "DEBIAN", "isDeprecated": False, "deprecationReason": None}, - { - "name": "NUGET", - "isDeprecated": True, - "deprecationReason": "NUGET will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC.", - }, - {"name": "PYPI", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageVersion", - "description": "Information about a specific package version.", - "fields": [ - { - "name": "files", - "args": [ - { - "name": "orderBy", - "description": "Ordering of the returned package files.", - "type": {"kind": "INPUT_OBJECT", "name": "PackageFileOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageFileConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "package", - "args": [], - "type": {"kind": "OBJECT", "name": "Package", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "platform", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "preRelease", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "readme", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "release", - "args": [], - "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "statistics", - "args": [], - "type": {"kind": "OBJECT", "name": "PackageVersionStatistics", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "summary", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "version", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageVersionConnection", - "description": "The connection type for PackageVersion.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageVersionEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageVersionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PackageVersion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "PackageVersionOrder", - "description": "Ways in which lists of package versions can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": {"kind": "ENUM", "name": "PackageVersionOrderField", "ofType": None}, - "defaultValue": None, - }, - { - "name": "direction", - "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PackageVersionOrderField", - "description": "Properties by which package version connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PackageVersionStatistics", - "description": "Represents a object that contains package version activity statistics such as downloads.", - "fields": [ - { - "name": "downloadsTotalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PageInfo", - "description": "Information about pagination in a connection.", - "fields": [ - { - "name": "endCursor", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasNextPage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasPreviousPage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startCursor", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PatchStatus", - "description": "The possible types of patch statuses.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ADDED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DELETED", "isDeprecated": False, "deprecationReason": None}, - {"name": "RENAMED", "isDeprecated": False, "deprecationReason": None}, - {"name": "COPIED", "isDeprecated": False, "deprecationReason": None}, - {"name": "MODIFIED", "isDeprecated": False, "deprecationReason": None}, - {"name": "CHANGED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "PermissionGranter", - "description": "Types that can grant permissions on a repository to a user", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "PermissionSource", - "description": "A level of permission and source for a user's access to a repository.", - "fields": [ - { - "name": "organization", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permission", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DefaultRepositoryPermissionField", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "roleName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "source", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "PermissionGranter", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "PinIssueInput", - "description": "Autogenerated input type of PinIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinIssuePayload", - "description": "Autogenerated return type of PinIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "PinnableItem", - "description": "Types that can be pinned to a profile page.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Gist", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "PinnableItemConnection", - "description": "The connection type for PinnableItem.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnableItemEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "PinnableItem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinnableItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "PinnableItem", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PinnableItemType", - "description": "Represents items that can be pinned to a profile page or dashboard.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, - {"name": "GIST", "isDeprecated": False, "deprecationReason": None}, - {"name": "ISSUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PROJECT", "isDeprecated": False, "deprecationReason": None}, - {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, - {"name": "USER", "isDeprecated": False, "deprecationReason": None}, - {"name": "ORGANIZATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "TEAM", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinnedDiscussion", - "description": "A Pinned Discussion is a discussion pinned to a repository's index page.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "gradientStopColors", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pattern", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PinnedDiscussionPattern", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedBy", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "preconfiguredGradient", - "args": [], - "type": {"kind": "ENUM", "name": "PinnedDiscussionGradient", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinnedDiscussionConnection", - "description": "The connection type for PinnedDiscussion.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnedDiscussionEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnedDiscussion", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinnedDiscussionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PinnedDiscussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PinnedDiscussionGradient", - "description": "Preconfigured gradients that may be used to style discussions pinned within a repository.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "RED_ORANGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "BLUE_MINT", "isDeprecated": False, "deprecationReason": None}, - {"name": "BLUE_PURPLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PINK_BLUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PURPLE_CORAL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PinnedDiscussionPattern", - "description": "Preconfigured background patterns that may be used to style discussions pinned within a repository.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DOT_FILL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PLUS", "isDeprecated": False, "deprecationReason": None}, - {"name": "ZAP", "isDeprecated": False, "deprecationReason": None}, - {"name": "CHEVRON_UP", "isDeprecated": False, "deprecationReason": None}, - {"name": "DOT", "isDeprecated": False, "deprecationReason": None}, - {"name": "HEART_FILL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinnedEvent", - "description": "Represents a 'pinned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinnedIssue", - "description": "A Pinned Issue is a issue pinned to a repository's index page.", - "fields": [ - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDatabaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedBy", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinnedIssueConnection", - "description": "The connection type for PinnedIssue.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnedIssueEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnedIssue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PinnedIssueEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PinnedIssue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "PreciseDateTime", - "description": "An ISO-8601 encoded UTC date string with millisecond precision.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingDisableAuditEntry", - "description": "Audit log entry for a private_repository_forking.disable event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PrivateRepositoryForkingEnableAuditEntry", - "description": "Audit log entry for a private_repository_forking.enable event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProfileItemShowcase", - "description": "A curatable list of repositories relating to a repository owner, which defaults to showing the most popular repositories they own.", - "fields": [ - { - "name": "hasPinnedItems", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "items", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "ProfileOwner", - "description": "Represents any entity on GitHub that has a profile page.", - "fields": [ - { - "name": "anyPinnableItems", - "args": [ - { - "name": "type", - "description": "Filter to only a particular kind of pinnable item.", - "type": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "itemShowcase", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProfileItemShowcase", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "location", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnableItems", - "args": [ - { - "name": "types", - "description": "Filter the types of pinnable items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedItems", - "args": [ - { - "name": "types", - "description": "Filter the types of pinned items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedItemsRemaining", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanChangePinnedItems", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "websiteUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "Project", - "description": "Projects manage issues, pull requests and notes within a project owner.", - "fields": [ - { - "name": "body", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "columns", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectColumnConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pendingCards", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "archivedStates", - "description": "A list of archived states to filter the cards by", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectCardArchivedState", "ofType": None}, - }, - "defaultValue": "[ARCHIVED, NOT_ARCHIVED]", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectCardConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "progress", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectProgress", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanClose", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReopen", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Closable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectCard", - "description": "A card in a project.", - "fields": [ - { - "name": "column", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "content", - "args": [], - "type": {"kind": "UNION", "name": "ProjectCardItem", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isArchived", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "note", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Project", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": {"kind": "ENUM", "name": "ProjectCardState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectCardArchivedState", - "description": "The possible archived states of a project card.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ARCHIVED", "isDeprecated": False, "deprecationReason": None}, - {"name": "NOT_ARCHIVED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectCardConnection", - "description": "The connection type for ProjectCard.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectCardEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectCardEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCardImport", - "description": "An issue or PR and its owning repository to be used in a project card.", - "fields": None, - "inputFields": [ - { - "name": "repository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "number", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "ProjectCardItem", - "description": "Types that can be inside Project Cards.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "ENUM", - "name": "ProjectCardState", - "description": "Various content states of a ProjectCard", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CONTENT_ONLY", "isDeprecated": False, "deprecationReason": None}, - {"name": "NOTE_ONLY", "isDeprecated": False, "deprecationReason": None}, - {"name": "REDACTED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectColumn", - "description": "A column inside a project.", - "fields": [ - { - "name": "cards", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "archivedStates", - "description": "A list of archived states to filter the cards by", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectCardArchivedState", "ofType": None}, - }, - "defaultValue": "[ARCHIVED, NOT_ARCHIVED]", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectCardConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Project", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "purpose", - "args": [], - "type": {"kind": "ENUM", "name": "ProjectColumnPurpose", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectColumnConnection", - "description": "The connection type for ProjectColumn.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectColumnEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectColumnEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectColumnImport", - "description": "A project column and a list of its issues and PRs.", - "fields": None, - "inputFields": [ - { - "name": "columnName", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "position", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "issues", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "ProjectCardImport", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectColumnPurpose", - "description": "The semantic purpose of the column - todo, in progress, or done.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "TODO", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "DONE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectConnection", - "description": "A list of projects associated with the owner.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Project", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectOrder", - "description": "Ways in which lists of projects can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectOrderField", - "description": "Properties by which project connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "ProjectOwner", - "description": "Represents an owner of a Project.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [ - { - "name": "number", - "description": "The project number to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projects", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for projects returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "search", - "description": "Query to search projects by, currently only searching by name.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the projects by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanCreateProjects", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ProjectProgress", - "description": "Project progress stats.", - "fields": [ - { - "name": "doneCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "donePercentage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "inProgressCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "inProgressPercentage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "todoCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "todoPercentage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Float", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectState", - "description": "State of the project; either 'open' or 'closed'", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectTemplate", - "description": "GitHub-provided templates for Projects", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "BASIC_KANBAN", "isDeprecated": False, "deprecationReason": None}, - {"name": "AUTOMATED_KANBAN_V2", "isDeprecated": False, "deprecationReason": None}, - {"name": "AUTOMATED_REVIEWS_KANBAN", "isDeprecated": False, "deprecationReason": None}, - {"name": "BUG_TRIAGE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2", - "description": "New projects that manage issues, pull requests and drafts using tables and boards.", - "fields": [ - { - "name": "closed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [ - { - "name": "name", - "description": "The name of the field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fields", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 fields returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "items", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 items returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2ItemOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "public", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "readme", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositories", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "shortDescription", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teams", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for teams returned from this connection.", - "type": {"kind": "INPUT_OBJECT", "name": "TeamOrder", "ofType": None}, - "defaultValue": "{field: NAME, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "template", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "view", - "args": [ - { - "name": "number", - "description": "The number of a view belonging to the project", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2View", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanClose", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReopen", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "views", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 views returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2ViewOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ViewConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "workflow", - "args": [ - { - "name": "number", - "description": "The number of a workflow belonging to the project", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2Workflow", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "workflows", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 workflows returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2WorkflowOrder", "ofType": None}, - "defaultValue": "{field: NAME, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2WorkflowConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Closable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "ProjectV2Actor", - "description": "Possible collaborators for a project.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Team", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ProjectV2ActorConnection", - "description": "The connection type for ProjectV2Actor.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ActorEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2Actor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ActorEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "ProjectV2Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Collaborator", - "description": "A collaborator to update on a project. Only one of the userId or teamId should be provided.", - "fields": None, - "inputFields": [ - { - "name": "userId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "teamId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "role", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2Roles", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2Connection", - "description": "The connection type for ProjectV2.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Edge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2CustomFieldType", - "description": "The type of a project field.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "TEXT", "isDeprecated": False, "deprecationReason": None}, - {"name": "SINGLE_SELECT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "DATE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2Edge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2Field", - "description": "A field inside a project.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dataType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2FieldType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2FieldCommon", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "ProjectV2FieldCommon", - "description": "Common fields across different project field types", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dataType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2FieldType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2IterationField", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2SingleSelectField", "ofType": None}, - ], - }, - { - "kind": "UNION", - "name": "ProjectV2FieldConfiguration", - "description": "Configurations for project fields.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2IterationField", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2SingleSelectField", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationConnection", - "description": "The connection type for ProjectV2FieldConfiguration.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2FieldConfigurationEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2FieldConfigurationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2FieldConnection", - "description": "The connection type for ProjectV2Field.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2FieldEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2FieldEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldOrder", - "description": "Ordering options for project v2 field connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2FieldOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2FieldOrderField", - "description": "Properties by which project v2 field connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "POSITION", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2FieldType", - "description": "The type of a project field.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ASSIGNEES", "isDeprecated": False, "deprecationReason": None}, - {"name": "LINKED_PULL_REQUESTS", "isDeprecated": False, "deprecationReason": None}, - {"name": "REVIEWERS", "isDeprecated": False, "deprecationReason": None}, - {"name": "LABELS", "isDeprecated": False, "deprecationReason": None}, - {"name": "MILESTONE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, - {"name": "TITLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "TEXT", "isDeprecated": False, "deprecationReason": None}, - {"name": "SINGLE_SELECT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "DATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "ITERATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "TRACKS", "isDeprecated": False, "deprecationReason": None}, - {"name": "TRACKED_BY", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2FieldValue", - "description": "The values that can be used to update a field of an item inside a Project. Only 1 value can be updated at a time.", - "fields": None, - "inputFields": [ - { - "name": "text", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "number", - "type": {"kind": "SCALAR", "name": "Float", "ofType": None}, - "defaultValue": None, - }, - { - "name": "date", - "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, - "defaultValue": None, - }, - { - "name": "singleSelectOptionId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "iterationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Filters", - "description": "Ways in which to filter lists of projects.", - "fields": None, - "inputFields": [ - { - "name": "state", - "type": {"kind": "ENUM", "name": "ProjectV2State", "ofType": None}, - "defaultValue": None, - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2Item", - "description": "An item within a Project.", - "fields": [ - { - "name": "content", - "args": [], - "type": {"kind": "UNION", "name": "ProjectV2ItemContent", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fieldValueByName", - "args": [ - { - "name": "name", - "description": "The name of the field to return the field value of", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "UNION", "name": "ProjectV2ItemFieldValue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fieldValues", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for project v2 item field values returned from the connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ItemFieldValueOrder", - "ofType": None, - }, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldValueConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDatabaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isArchived", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "type", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2ItemType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemConnection", - "description": "The connection type for ProjectV2Item.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "ProjectV2ItemContent", - "description": "Types that can be inside Project Items.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "DraftIssue", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldDateValue", - "description": "The value of a date field in a Project item.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "date", - "args": [], - "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldIterationValue", - "description": "The value of an iteration field in a Project item.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "duration", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "iterationId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startDate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "titleHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldLabelValue", - "description": "The value of the labels field in a Project item.", - "fields": [ - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labels", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldMilestoneValue", - "description": "The value of a milestone field in a Project item.", - "fields": [ - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "milestone", - "args": [], - "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldNumberValue", - "description": "The value of a number field in a Project item.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": {"kind": "SCALAR", "name": "Float", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldPullRequestValue", - "description": "The value of a pull request field in a Project item.", - "fields": [ - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequests", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests.", - "type": {"kind": "INPUT_OBJECT", "name": "PullRequestOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldRepositoryValue", - "description": "The value of a repository field in a Project item.", - "fields": [ - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldReviewerValue", - "description": "The value of a reviewers field in a Project item.", - "fields": [ - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "RequestedReviewerConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldSingleSelectValue", - "description": "The value of a single select field in a Project item.", - "fields": [ - { - "name": "color", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2SingleSelectFieldOptionColor", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "descriptionHTML", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nameHTML", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "optionId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldTextValue", - "description": "The value of a text field in a Project item.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "text", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2ItemFieldValueCommon", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldUserValue", - "description": "The value of a user field in a Project item.", - "fields": [ - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "users", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "ProjectV2ItemFieldValue", - "description": "Project field values", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "ProjectV2ItemFieldDateValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldIterationValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldLabelValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldMilestoneValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldNumberValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldPullRequestValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldRepositoryValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldReviewerValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldSingleSelectValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldTextValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldUserValue", "ofType": None}, - ], - }, - { - "kind": "INTERFACE", - "name": "ProjectV2ItemFieldValueCommon", - "description": "Common fields across different project field value types", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "ProjectV2ItemFieldDateValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldIterationValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldNumberValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldSingleSelectValue", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2ItemFieldTextValue", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldValueConnection", - "description": "The connection type for ProjectV2ItemFieldValue.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemFieldValueEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2ItemFieldValue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ItemFieldValueEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "ProjectV2ItemFieldValue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ItemFieldValueOrder", - "description": "Ordering options for project v2 item field value connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2ItemFieldValueOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2ItemFieldValueOrderField", - "description": "Properties by which project v2 item field value connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "POSITION", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ItemOrder", - "description": "Ordering options for project v2 item connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2ItemOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2ItemOrderField", - "description": "Properties by which project v2 item connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "POSITION", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2ItemType", - "description": "The type of a project item.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ISSUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, - {"name": "DRAFT_ISSUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REDACTED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationField", - "description": "An iteration field inside a project.", - "fields": [ - { - "name": "configuration", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldConfiguration", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dataType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2FieldType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2FieldCommon", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldConfiguration", - "description": "Iteration field configuration for a project.", - "fields": [ - { - "name": "completedIterations", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldIteration", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "duration", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "iterations", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldIteration", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startDay", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2IterationFieldIteration", - "description": "Iteration field iteration settings for a project.", - "fields": [ - { - "name": "duration", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startDate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Date", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "titleHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Order", - "description": "Ways in which lists of projects can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2OrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2OrderField", - "description": "Properties by which projects can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "TITLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Owner", - "description": "Represents an owner of a project.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsV2", - "args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, - "defaultValue": "{field: NUMBER, direction: DESC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "INTERFACE", - "name": "ProjectV2Recent", - "description": "Recent projects for the owner.", - "fields": [ - { - "name": "recentProjects", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "ENUM", - "name": "ProjectV2Roles", - "description": "The possible roles of a collaborator on a project.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - {"name": "READER", "isDeprecated": False, "deprecationReason": None}, - {"name": "WRITER", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectField", - "description": "A single select field inside a project.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dataType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2FieldType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "options", - "args": [ - { - "name": "names", - "description": "Filter returned options to only those matching these names, case insensitive.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectFieldOption", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2FieldCommon", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2SingleSelectFieldOption", - "description": "Single select field option for a configuration for a project.", - "fields": [ - { - "name": "color", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2SingleSelectFieldOptionColor", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "descriptionHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nameHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2SingleSelectFieldOptionColor", - "description": "The display color of a single-select field option.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "GRAY", "isDeprecated": False, "deprecationReason": None}, - {"name": "BLUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "GREEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "YELLOW", "isDeprecated": False, "deprecationReason": None}, - {"name": "ORANGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "RED", "isDeprecated": False, "deprecationReason": None}, - {"name": "PINK", "isDeprecated": False, "deprecationReason": None}, - {"name": "PURPLE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2SingleSelectFieldOptionInput", - "description": "Represents a single select field option", - "fields": None, - "inputFields": [ - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "color", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "ProjectV2SingleSelectFieldOptionColor", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "description", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortBy", - "description": "Represents a sort by field and direction.", - "fields": [ - { - "name": "direction", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Field", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByConnection", - "description": "The connection type for ProjectV2SortBy.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2SortByEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2SortBy", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2SortBy", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByField", - "description": "Represents a sort by field and direction.", - "fields": [ - { - "name": "direction", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "field", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ProjectV2FieldConfiguration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByFieldConnection", - "description": "The connection type for ProjectV2SortByField.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2SortByFieldEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2SortByField", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2SortByFieldEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2SortByField", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2State", - "description": "The possible states of a project v2.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2View", - "description": "A view within a ProjectV2.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fields", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2FieldConfigurationConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "filter", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "groupBy", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2FieldConnection", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "The `ProjectV2View#order_by` API is deprecated in favour of the more capable `ProjectV2View#group_by_field` API. Check out the `ProjectV2View#group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC.", - }, - { - "name": "groupByFields", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2FieldConfigurationConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "layout", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2ViewLayout", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sortBy", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2SortByConnection", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "The `ProjectV2View#sort_by` API is deprecated in favour of the more capable `ProjectV2View#sort_by_fields` API. Check out the `ProjectV2View#sort_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC.", - }, - { - "name": "sortByFields", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2SortByFieldConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "verticalGroupBy", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2FieldConnection", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "The `ProjectV2View#vertical_group_by` API is deprecated in favour of the more capable `ProjectV2View#vertical_group_by_fields` API. Check out the `ProjectV2View#vertical_group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC.", - }, - { - "name": "verticalGroupByFields", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2FieldConfigurationConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibleFields", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the project v2 fields returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldOrder", "ofType": None}, - "defaultValue": "{field: POSITION, direction: ASC}", - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2FieldConnection", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "The `ProjectV2View#visibleFields` API is deprecated in favour of the more capable `ProjectV2View#fields` API. Check out the `ProjectV2View#fields` API as an example for the more capable alternative. Removal on 2023-01-01 UTC.", - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ViewConnection", - "description": "The connection type for ProjectV2View.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ViewEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2View", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2ViewEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2View", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2ViewLayout", - "description": "The layout of a project v2 view.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "BOARD_LAYOUT", "isDeprecated": False, "deprecationReason": None}, - {"name": "TABLE_LAYOUT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ROADMAP_LAYOUT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2ViewOrder", - "description": "Ordering options for project v2 view connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2ViewOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2ViewOrderField", - "description": "Properties by which project v2 view connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "POSITION", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2Workflow", - "description": "A workflow inside a project.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2WorkflowConnection", - "description": "The connection type for ProjectV2Workflow.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2WorkflowEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Workflow", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ProjectV2WorkflowEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Workflow", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectV2WorkflowOrder", - "description": "Ordering options for project v2 workflows connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectV2WorkflowsOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ProjectV2WorkflowsOrderField", - "description": "Properties by which project workflows can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, - {"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PropertyTargetDefinition", - "description": "A property that must match", - "fields": [ - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "propertyValues", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "PropertyTargetDefinitionInput", - "description": "A property that must match", - "fields": None, - "inputFields": [ - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "propertyValues", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PublicKey", - "description": "A user's public key.", - "fields": [ - { - "name": "accessedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fingerprint", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isReadOnly", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "key", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PublicKeyConnection", - "description": "The connection type for PublicKey.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PublicKeyEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PublicKey", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PublicKeyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PublicKey", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "PublishSponsorsTierInput", - "description": "Autogenerated input type of PublishSponsorsTier", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "tierId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PublishSponsorsTierPayload", - "description": "Autogenerated return type of PublishSponsorsTier", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsTier", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "description": "A repository pull request.", - "fields": [ - { - "name": "activeLockReason", - "args": [], - "type": {"kind": "ENUM", "name": "LockReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "additions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assignees", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "autoMergeRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "AutoMergeRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "baseRef", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "baseRefName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "baseRefOid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "baseRepository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "canBeRebased", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "changedFiles", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "checksResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "checksUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closingIssuesReferences", - "args": [ - { - "name": "userLinkedOnly", - "description": "Return only manually linked Issues", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comments", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for issue comments returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueCommentOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestCommitConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.", - }, - { - "name": "deletions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "files", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "PullRequestChangedFileConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDatabaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headRef", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headRefName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headRefOid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headRepository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "headRepositoryOwner", - "args": [], - "type": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hovercard", - "args": [ - { - "name": "includeNotificationContexts", - "description": "Whether or not to include notification contexts", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Hovercard", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCrossRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDraft", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isInMergeQueue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMergeQueueEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isReadByViewer", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labels", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "latestOpinionatedReviews", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "writersOnly", - "description": "Only return reviews from user who have write access to the repository", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": {"kind": "OBJECT", "name": "PullRequestReviewConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "latestReviews", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "PullRequestReviewConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "locked", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "maintainerCanModify", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeQueue", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeQueueEntry", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueueEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeStateStatus", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MergeStateStatus", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MergeableState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "merged", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergedBy", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "milestone", - "args": [], - "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "participants", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permalink", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "potentialMergeCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectCards", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "archivedStates", - "description": "A list of archived states to filter the cards by", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectCardArchivedState", "ofType": None}, - }, - "defaultValue": "[ARCHIVED, NOT_ARCHIVED]", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectCardConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectItems", - "args": [ - { - "name": "includeArchived", - "description": "Include archived items.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsV2", - "args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, - "defaultValue": "{field: NUMBER, direction: DESC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "revertResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "revertUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewDecision", - "args": [], - "type": {"kind": "ENUM", "name": "PullRequestReviewDecision", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewRequests", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "ReviewRequestConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewThreads", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewThreadConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviews", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the reviews.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewState", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "author", - "description": "Filter by author of the review.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "PullRequestReviewConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "statusCheckRollup", - "args": [], - "type": {"kind": "OBJECT", "name": "StatusCheckRollup", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "suggestedReviewers", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SuggestedReviewer", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "timeline", - "args": [ - { - "name": "since", - "description": "Allows filtering timeline events by a `since` timestamp.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestTimelineConnection", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "`timeline` will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.", - }, - { - "name": "timelineItems", - "args": [ - { - "name": "since", - "description": "Filter timeline items by a `since` timestamp.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "skip", - "description": "Skips the first _n_ elements in the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "itemTypes", - "description": "Filter timeline items by type.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestTimelineItemsItemType", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestTimelineItemsConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "titleHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCommentsCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanApplySuggestion", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanClose", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDeleteHeadRef", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDisableAutoMerge", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanEditFiles", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanEnableAutoMerge", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMergeAsAdmin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReopen", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSubscribe", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdateBranch", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerLatestReview", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerLatestReviewRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "ReviewRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerMergeBodyText", - "args": [ - { - "name": "mergeType", - "description": "The merge method for the message.", - "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerMergeHeadlineText", - "args": [ - { - "name": "mergeType", - "description": "The merge method for the message.", - "type": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerSubscription", - "args": [], - "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, - {"kind": "INTERFACE", "name": "Closable", "ofType": None}, - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, - {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestBranchUpdateMethod", - "description": "The possible methods for updating a pull request's head branch with the base branch.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MERGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REBASE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestChangedFile", - "description": "A file changed in a pull request.", - "fields": [ - { - "name": "additions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "changeType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PatchStatus", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerViewedState", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "FileViewedState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestChangedFileConnection", - "description": "The connection type for PullRequestChangedFile.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestChangedFileEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestChangedFile", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestChangedFileEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestChangedFile", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestCommit", - "description": "Represents a Git commit part of a pull request.", - "fields": [ - { - "name": "commit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitCommentThread", - "description": "Represents a commit comment thread part of a pull request.", - "fields": [ - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "position", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitConnection", - "description": "The connection type for PullRequestCommit.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestCommitEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestCommitEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestConnection", - "description": "The connection type for PullRequest.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestContributionsByRepository", - "description": "This aggregates pull requests opened by a user within one repository.", - "fields": [ - { - "name": "contributions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, - "defaultValue": "{direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestContributionConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestMergeMethod", - "description": "Represents available types of methods to use when merging a pull request.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MERGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SQUASH", "isDeprecated": False, "deprecationReason": None}, - {"name": "REBASE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "PullRequestOrder", - "description": "Ways in which lists of issues can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestOrderField", - "description": "Properties by which pull_requests connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestParameters", - "description": "Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.", - "fields": [ - { - "name": "dismissStaleReviewsOnPush", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requireCodeOwnerReview", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requireLastPushApproval", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiredApprovingReviewCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiredReviewThreadResolution", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "PullRequestParametersInput", - "description": "Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.", - "fields": None, - "inputFields": [ - { - "name": "dismissStaleReviewsOnPush", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "requireCodeOwnerReview", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "requireLastPushApproval", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "requiredApprovingReviewCount", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "requiredReviewThreadResolution", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReview", - "description": "A review object for a given pull request.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorCanPushToRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewCommentConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.", - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDatabaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMinimized", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizedReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "onBehalfOf", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestReviewState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "submittedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMinimize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewComment", - "description": "A review comment associated with a given repository pull request.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.", - }, - { - "name": "diffHunk", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "draftedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDatabaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "BigInt", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMinimized", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "line", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "minimizedReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "originalCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "originalLine", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "originalPosition", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "We are phasing out diff-relative positioning for PR comments Removal on 2023-10-01 UTC.", - }, - { - "name": "originalStartLine", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "outdated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "position", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "We are phasing out diff-relative positioning for PR comments Use the `line` and `startLine` fields instead, which are file line numbers instead of diff line numbers Removal on 2023-10-01 UTC.", - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReview", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "replyTo", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startLine", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestReviewCommentState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subjectType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanMinimize", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewCommentConnection", - "description": "The connection type for PullRequestReviewComment.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestReviewCommentEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestReviewCommentState", - "description": "The possible states of a pull request review comment.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBMITTED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewConnection", - "description": "The connection type for PullRequestReview.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestReviewEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewContributionsByRepository", - "description": "This aggregates pull request reviews made by a user within one repository.", - "fields": [ - { - "name": "contributions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for contributions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "ContributionOrder", "ofType": None}, - "defaultValue": "{direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "CreatedPullRequestReviewContributionConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestReviewDecision", - "description": "The review status of a pull request.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CHANGES_REQUESTED", "isDeprecated": False, "deprecationReason": None}, - {"name": "APPROVED", "isDeprecated": False, "deprecationReason": None}, - {"name": "REVIEW_REQUIRED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestReviewEvent", - "description": "The possible events to perform on a pull request review.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "COMMENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "APPROVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REQUEST_CHANGES", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISMISS", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestReviewState", - "description": "The possible states of a pull request review.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMENTED", "isDeprecated": False, "deprecationReason": None}, - {"name": "APPROVED", "isDeprecated": False, "deprecationReason": None}, - {"name": "CHANGES_REQUESTED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISMISSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThread", - "description": "A threaded list of comments for a given pull request.", - "fields": [ - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "skip", - "description": "Skips the first _n_ elements in the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewCommentConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "diffSide", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCollapsed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isOutdated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isResolved", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "line", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "originalLine", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "originalStartLine", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resolvedBy", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startDiffSide", - "args": [], - "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startLine", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subjectType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReply", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanResolve", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUnresolve", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThreadConnection", - "description": "Review comment threads for a pull request review.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestReviewThreadEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestReviewThreadEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "description": "The possible subject types of a pull request review comment.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "LINE", "isDeprecated": False, "deprecationReason": None}, - {"name": "FILE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestRevisionMarker", - "description": "Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastSeenCommit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestState", - "description": "The possible states of a pull request.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, - {"name": "MERGED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestTemplate", - "description": "A repository pull request template.", - "fields": [ - { - "name": "body", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "filename", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestThread", - "description": "A threaded list of comments for a given pull request.", - "fields": [ - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "skip", - "description": "Skips the first _n_ elements in the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestReviewCommentConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "diffSide", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCollapsed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isOutdated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isResolved", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "line", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resolvedBy", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startDiffSide", - "args": [], - "type": {"kind": "ENUM", "name": "DiffSide", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "startLine", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subjectType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "PullRequestReviewThreadSubjectType", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReply", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanResolve", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUnresolve", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestTimelineConnection", - "description": "The connection type for PullRequestTimelineItem.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestTimelineItemEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "PullRequestTimelineItem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "PullRequestTimelineItem", - "description": "An item in a pull request timeline", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "BaseRefDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "BaseRefForcePushedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Commit", "ofType": None}, - {"kind": "OBJECT", "name": "CommitCommentThread", "ofType": None}, - {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DeployedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DeploymentEnvironmentChangedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefForcePushedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefRestoredEvent", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MergedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, - {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewDismissedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewRequestRemovedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewRequestedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "PullRequestTimelineItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "PullRequestTimelineItem", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "PullRequestTimelineItems", - "description": "An item in a pull request timeline", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "AddedToMergeQueueEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AddedToProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AssignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutoMergeDisabledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutoMergeEnabledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutoRebaseEnabledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutoSquashEnabledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutomaticBaseChangeFailedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "AutomaticBaseChangeSucceededEvent", "ofType": None}, - {"kind": "OBJECT", "name": "BaseRefChangedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "BaseRefDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "BaseRefForcePushedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "CommentDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConnectedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertToDraftEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertedNoteToIssueEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertedToDiscussionEvent", "ofType": None}, - {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DemilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DeployedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DeploymentEnvironmentChangedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "DisconnectedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefDeletedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefForcePushedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "HeadRefRestoredEvent", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "LabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "LockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MarkedAsDuplicateEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MentionedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MergedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MilestonedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "MovedColumnsInProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "PinnedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestCommitCommentThread", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestRevisionMarker", "ofType": None}, - {"kind": "OBJECT", "name": "ReadyForReviewEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RemovedFromMergeQueueEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RemovedFromProjectEvent", "ofType": None}, - {"kind": "OBJECT", "name": "RenamedTitleEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReopenedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewDismissedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewRequestRemovedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewRequestedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "SubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "TransferredEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnassignedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlabeledEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnlockedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnmarkedAsDuplicateEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnpinnedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UnsubscribedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "UserBlockedEvent", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "PullRequestTimelineItemsConnection", - "description": "The connection type for PullRequestTimelineItems.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestTimelineItemsEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "filteredCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "PullRequestTimelineItems", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PullRequestTimelineItemsEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "PullRequestTimelineItems", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestTimelineItemsItemType", - "description": "The possible item types found in a timeline.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PULL_REQUEST_COMMIT", "isDeprecated": False, "deprecationReason": None}, - { - "name": "PULL_REQUEST_COMMIT_COMMENT_THREAD", - "isDeprecated": False, - "deprecationReason": None, - }, - {"name": "PULL_REQUEST_REVIEW", "isDeprecated": False, "deprecationReason": None}, - {"name": "PULL_REQUEST_REVIEW_THREAD", "isDeprecated": False, "deprecationReason": None}, - {"name": "PULL_REQUEST_REVISION_MARKER", "isDeprecated": False, "deprecationReason": None}, - { - "name": "AUTOMATIC_BASE_CHANGE_FAILED_EVENT", - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "AUTOMATIC_BASE_CHANGE_SUCCEEDED_EVENT", - "isDeprecated": False, - "deprecationReason": None, - }, - {"name": "AUTO_MERGE_DISABLED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "AUTO_MERGE_ENABLED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "AUTO_REBASE_ENABLED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "AUTO_SQUASH_ENABLED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "BASE_REF_CHANGED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "BASE_REF_FORCE_PUSHED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "BASE_REF_DELETED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "DEPLOYED_EVENT", "isDeprecated": False, "deprecationReason": None}, - { - "name": "DEPLOYMENT_ENVIRONMENT_CHANGED_EVENT", - "isDeprecated": False, - "deprecationReason": None, - }, - {"name": "HEAD_REF_DELETED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "HEAD_REF_FORCE_PUSHED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "HEAD_REF_RESTORED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MERGED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REVIEW_DISMISSED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REVIEW_REQUESTED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REVIEW_REQUEST_REMOVED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "READY_FOR_REVIEW_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONVERT_TO_DRAFT_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADDED_TO_MERGE_QUEUE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REMOVED_FROM_MERGE_QUEUE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ISSUE_COMMENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CROSS_REFERENCED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ADDED_TO_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ASSIGNED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMENT_DELETED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONNECTED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONVERTED_NOTE_TO_ISSUE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONVERTED_TO_DISCUSSION_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "DEMILESTONED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISCONNECTED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "LABELED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "LOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MARKED_AS_DUPLICATE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MENTIONED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MILESTONED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MOVED_COLUMNS_IN_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "PINNED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REFERENCED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REMOVED_FROM_PROJECT_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "RENAMED_TITLE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "REOPENED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIBED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "TRANSFERRED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNASSIGNED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNLABELED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNLOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "USER_BLOCKED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNMARKED_AS_DUPLICATE_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNPINNED_EVENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNSUBSCRIBED_EVENT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "PullRequestUpdateState", - "description": "The possible target states when updating a pull request.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Push", - "description": "A Git push.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nextSha", - "args": [], - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permalink", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "previousSha", - "args": [], - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pusher", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PushAllowance", - "description": "A team, user, or app who has the ability to push to a protected branch.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "PushAllowanceActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "branchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "PushAllowanceActor", - "description": "Types that can be an actor.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "App", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "PushAllowanceConnection", - "description": "The connection type for PushAllowance.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PushAllowanceEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PushAllowance", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "PushAllowanceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "PushAllowance", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Query", - "description": "The query root of GitHub's GraphQL interface.", - "fields": [ - { - "name": "codeOfConduct", - "args": [ - { - "name": "key", - "description": "The code of conduct's key", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "CodeOfConduct", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "codesOfConduct", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CodeOfConduct", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [ - { - "name": "slug", - "description": "The enterprise URL slug.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "invitationToken", - "description": "The enterprise invitation token.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseAdministratorInvitation", - "args": [ - { - "name": "userLogin", - "description": "The login of the user invited to join the business.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "enterpriseSlug", - "description": "The slug of the enterprise the user was invited to join.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "role", - "description": "The role for the business member invitation.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseAdministratorRole", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseAdministratorInvitationByToken", - "args": [ - { - "name": "invitationToken", - "description": "The invitation token sent with the invitation email.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "EnterpriseAdministratorInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "license", - "args": [ - { - "name": "key", - "description": "The license's downcased SPDX ID", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "License", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "licenses", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "License", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "marketplaceCategories", - "args": [ - { - "name": "includeCategories", - "description": "Return only the specified categories.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "excludeEmpty", - "description": "Exclude categories with no listings.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "excludeSubcategories", - "description": "Returns top level categories only, excluding any subcategories.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "marketplaceCategory", - "args": [ - { - "name": "slug", - "description": "The URL slug of the category.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "useTopicAliases", - "description": "Also check topic aliases for the category slug", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "MarketplaceCategory", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "marketplaceListing", - "args": [ - { - "name": "slug", - "description": "Select the listing that matches this slug. It's the short name of the listing used in its URL.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "marketplaceListings", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "categorySlug", - "description": "Select only listings with the given category.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "useTopicAliases", - "description": "Also check topic aliases for the category slug", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "viewerCanAdmin", - "description": "Select listings to which user has admin access. If omitted, listings visible to the\\nviewer are returned.\\n", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "adminId", - "description": "Select listings that can be administered by the specified user.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "description": "Select listings for products owned by the specified organization.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "allStates", - "description": "Select listings visible to the viewer even if they are not approved. If omitted or\\nfalse, only approved listings will be returned.\\n", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "slugs", - "description": "Select the listings with these slugs, if they are visible to the viewer.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "primaryCategoryOnly", - "description": "Select only listings where the primary category matches the given category slug.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "withFreeTrialsOnly", - "description": "Select only listings that offer a free trial.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MarketplaceListingConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "meta", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GitHubMetadata", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [ - { - "name": "id", - "description": "ID of the object.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "INTERFACE", "name": "Node", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [ - { - "name": "ids", - "description": "The list of node IDs.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Node", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [ - { - "name": "login", - "description": "The organization's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rateLimit", - "args": [ - { - "name": "dryRun", - "description": "If true, calculate the cost for the query without evaluating it", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - } - ], - "type": {"kind": "OBJECT", "name": "RateLimit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "relay", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Query", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [ - { - "name": "owner", - "description": "The login field of a user or organization", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "description": "The name of the repository", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "followRenames", - "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryOwner", - "args": [ - { - "name": "login", - "description": "The username to lookup the owner by.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resource", - "args": [ - { - "name": "url", - "description": "The URL.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "search", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "type", - "description": "The types of search items to search within.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SearchType", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SearchResultItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "securityAdvisories", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for the returned topics.", - "type": {"kind": "INPUT_OBJECT", "name": "SecurityAdvisoryOrder", "ofType": None}, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - { - "name": "identifier", - "description": "Filter advisories by identifier, e.g. GHSA or CVE.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SecurityAdvisoryIdentifierFilter", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "publishedSince", - "description": "Filter advisories to those published since a time in the past.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "updatedSince", - "description": "Filter advisories to those updated since a time in the past.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "classifications", - "description": "A list of classifications to filter advisories by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityAdvisoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "securityAdvisory", - "args": [ - { - "name": "ghsaId", - "description": "GitHub Security Advisory ID.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "securityVulnerabilities", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for the returned topics.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SecurityVulnerabilityOrder", - "ofType": None, - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - { - "name": "ecosystem", - "description": "An ecosystem to filter vulnerabilities by.", - "type": {"kind": "ENUM", "name": "SecurityAdvisoryEcosystem", "ofType": None}, - "defaultValue": None, - }, - { - "name": "package", - "description": "A package name to filter vulnerabilities by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "severities", - "description": "A list of severities to filter vulnerabilities by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisorySeverity", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "classifications", - "description": "A list of advisory classifications to filter vulnerabilities by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityVulnerabilityConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorables", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for users and organizations returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorableOrder", "ofType": None}, - "defaultValue": "{field: LOGIN, direction: ASC}", - }, - { - "name": "onlyDependencies", - "description": "Whether only sponsorables who own the viewer's dependencies will be returned. Must be authenticated to use. Can check an organization instead for their dependencies owned by sponsorables by passing orgLoginForDependencies.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orgLoginForDependencies", - "description": "Optional organization username for whose dependencies should be checked. Used when onlyDependencies = true. Omit to check your own dependencies. If you are not an administrator of the organization, only dependencies from its public repositories will be considered.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "dependencyEcosystem", - "description": "Optional filter for which dependencies should be checked for sponsorable owners. Only sponsorable owners of dependencies in this ecosystem will be included. Used when onlyDependencies = true.\\n\\n**Upcoming Change on 2022-07-01 UTC**\\n**Description:** `dependencyEcosystem` will be removed. Use the ecosystem argument instead.\\n**Reason:** The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.\\n", - "type": {"kind": "ENUM", "name": "SecurityAdvisoryEcosystem", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ecosystem", - "description": "Optional filter for which dependencies should be checked for sponsorable owners. Only sponsorable owners of dependencies in this ecosystem will be included. Used when onlyDependencies = true.", - "type": {"kind": "ENUM", "name": "DependencyGraphEcosystem", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorableItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topic", - "args": [ - { - "name": "name", - "description": "The topic's name.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [ - { - "name": "login", - "description": "The user's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RateLimit", - "description": "Represents the client's rate limit.", - "fields": [ - { - "name": "cost", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "limit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodeCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "remaining", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resetAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "used", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Reactable", - "description": "Represents a subject that can be reacted on.", - "fields": [ - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - {"kind": "OBJECT", "name": "Release", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ReactingUserConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactingUserEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReactingUserEdge", - "description": "Represents a user that's made a reaction.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Reaction", - "description": "An emoji reaction to a particular piece of content.", - "fields": [ - { - "name": "content", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReactionConnection", - "description": "A list of reactions that have been left on the subject.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Reaction", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasReacted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ReactionContent", - "description": "Emojis that can be attached to Issues, Pull Requests and Comments.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "THUMBS_UP", "isDeprecated": False, "deprecationReason": None}, - {"name": "THUMBS_DOWN", "isDeprecated": False, "deprecationReason": None}, - {"name": "LAUGH", "isDeprecated": False, "deprecationReason": None}, - {"name": "HOORAY", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONFUSED", "isDeprecated": False, "deprecationReason": None}, - {"name": "HEART", "isDeprecated": False, "deprecationReason": None}, - {"name": "ROCKET", "isDeprecated": False, "deprecationReason": None}, - {"name": "EYES", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReactionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Reaction", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReactionGroup", - "description": "A group of emoji reactions to a particular piece of content.", - "fields": [ - { - "name": "content", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactors", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactorConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "users", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactingUserConnection", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "Reactors can now be mannequins, bots, and organizations. Use the `reactors` field instead. Removal on 2021-10-01 UTC.", - }, - { - "name": "viewerHasReacted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ReactionOrder", - "description": "Ways in which lists of reactions can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ReactionOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ReactionOrderField", - "description": "A list of fields that reactions can be ordered by.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "Reactor", - "description": "Types that can be assigned to reactions.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Bot", "ofType": None}, - {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ReactorConnection", - "description": "The connection type for Reactor.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactorEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "Reactor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReactorEdge", - "description": "Represents an author of a reaction.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "Reactor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReadyForReviewEvent", - "description": "Represents a 'ready_for_review' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Ref", - "description": "Represents a Git reference.", - "fields": [ - { - "name": "associatedPullRequests", - "args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "branchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "compare", - "args": [ - { - "name": "headRef", - "description": "The head ref to compare against.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Comparison", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "prefix", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "refUpdateRule", - "args": [], - "type": {"kind": "OBJECT", "name": "RefUpdateRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rules", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repository rules.", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryRuleOrder", "ofType": None}, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - ], - "type": {"kind": "OBJECT", "name": "RepositoryRuleConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "target", - "args": [], - "type": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RefConnection", - "description": "The connection type for Ref.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RefEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RefEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RefNameConditionTarget", - "description": "Parameters to be used for the ref_name condition", - "fields": [ - { - "name": "exclude", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "include", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RefNameConditionTargetInput", - "description": "Parameters to be used for the ref_name condition", - "fields": None, - "inputFields": [ - { - "name": "exclude", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "include", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RefOrder", - "description": "Ways in which lists of git refs can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RefOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RefOrderField", - "description": "Properties by which ref connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "TAG_COMMIT_DATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "ALPHABETICAL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RefUpdate", - "description": "A ref update", - "fields": None, - "inputFields": [ - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitRefname", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "afterOid", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "beforeOid", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "force", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RefUpdateRule", - "description": "Branch protection rules that are enforced on the viewer.", - "fields": [ - { - "name": "allowsDeletions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "allowsForcePushes", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blocksCreations", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pattern", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiredApprovingReviewCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiredStatusCheckContexts", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresCodeOwnerReviews", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresConversationResolution", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresLinearHistory", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requiresSignatures", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerAllowedToDismissReviews", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanPush", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReferencedEvent", - "description": "Represents a 'referenced' event on a given `ReferencedSubject`.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCrossRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDirectReference", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "ReferencedSubject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "ReferencedSubject", - "description": "Any referencable object", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesInput", - "description": "Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RegenerateEnterpriseIdentityProviderRecoveryCodesPayload", - "description": "Autogenerated return type of RegenerateEnterpriseIdentityProviderRecoveryCodes", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "identityProvider", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RegenerateVerifiableDomainTokenInput", - "description": "Autogenerated input type of RegenerateVerifiableDomainToken", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RegenerateVerifiableDomainTokenPayload", - "description": "Autogenerated return type of RegenerateVerifiableDomainToken", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "verificationToken", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RejectDeploymentsInput", - "description": "Autogenerated input type of RejectDeployments", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "workflowRunId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "environmentIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - {"name": "comment", "type": {"kind": "SCALAR", "name": "String", "ofType": None}}, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RejectDeploymentsPayload", - "description": "Autogenerated return type of RejectDeployments", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployments", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Deployment", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Release", - "description": "A release contains the content for a release.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "descriptionHTML", - "args": [], - "type": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDraft", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isLatest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPrerelease", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mentions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "releaseAssets", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "name", - "description": "A name to filter the assets by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReleaseAssetConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "shortDescriptionHTML", - "args": [ - { - "name": "limit", - "description": "How many characters to return.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "200", - } - ], - "type": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tag", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tagCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tagName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReleaseAsset", - "description": "A release asset contains the content for a release asset.", - "fields": [ - { - "name": "contentType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "downloadCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "downloadUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "release", - "args": [], - "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "size", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "uploadedBy", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReleaseAssetConnection", - "description": "The connection type for ReleaseAsset.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReleaseAssetEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReleaseAsset", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReleaseAssetEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ReleaseAsset", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReleaseConnection", - "description": "The connection type for Release.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReleaseEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Release", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReleaseEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ReleaseOrder", - "description": "Ways in which lists of releases can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ReleaseOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ReleaseOrderField", - "description": "Properties by which release connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveAssigneesFromAssignableInput", - "description": "Autogenerated input type of RemoveAssigneesFromAssignable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "assignableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "assigneeIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveAssigneesFromAssignablePayload", - "description": "Autogenerated return type of RemoveAssigneesFromAssignable", - "fields": [ - { - "name": "assignable", - "args": [], - "type": {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseAdminInput", - "description": "Autogenerated input type of RemoveEnterpriseAdmin", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "login", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseAdminPayload", - "description": "Autogenerated return type of RemoveEnterpriseAdmin", - "fields": [ - { - "name": "admin", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseIdentityProviderInput", - "description": "Autogenerated input type of RemoveEnterpriseIdentityProvider", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseIdentityProviderPayload", - "description": "Autogenerated return type of RemoveEnterpriseIdentityProvider", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "identityProvider", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseMemberInput", - "description": "Autogenerated input type of RemoveEnterpriseMember", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "userId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseMemberPayload", - "description": "Autogenerated return type of RemoveEnterpriseMember", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseOrganizationInput", - "description": "Autogenerated input type of RemoveEnterpriseOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseOrganizationPayload", - "description": "Autogenerated return type of RemoveEnterpriseOrganization", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveEnterpriseSupportEntitlementInput", - "description": "Autogenerated input type of RemoveEnterpriseSupportEntitlement", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "login", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveEnterpriseSupportEntitlementPayload", - "description": "Autogenerated return type of RemoveEnterpriseSupportEntitlement", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveLabelsFromLabelableInput", - "description": "Autogenerated input type of RemoveLabelsFromLabelable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labelableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "labelIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveLabelsFromLabelablePayload", - "description": "Autogenerated return type of RemoveLabelsFromLabelable", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labelable", - "args": [], - "type": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveOutsideCollaboratorInput", - "description": "Autogenerated input type of RemoveOutsideCollaborator", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveOutsideCollaboratorPayload", - "description": "Autogenerated return type of RemoveOutsideCollaborator", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "removedUser", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveReactionInput", - "description": "Autogenerated input type of RemoveReaction", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "content", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveReactionPayload", - "description": "Autogenerated return type of RemoveReaction", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reaction", - "args": [], - "type": {"kind": "OBJECT", "name": "Reaction", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveStarInput", - "description": "Autogenerated input type of RemoveStar", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "starrableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveStarPayload", - "description": "Autogenerated return type of RemoveStar", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "starrable", - "args": [], - "type": {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveUpvoteInput", - "description": "Autogenerated input type of RemoveUpvote", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemoveUpvotePayload", - "description": "Autogenerated return type of RemoveUpvote", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": {"kind": "INTERFACE", "name": "Votable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemovedFromMergeQueueEvent", - "description": "Represents a 'removed_from_merge_queue' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "beforeCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enqueuer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeQueue", - "args": [], - "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RemovedFromProjectEvent", - "description": "Represents a 'removed_from_project' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectColumnName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RenamedTitleEvent", - "description": "Represents a 'renamed' event on a given issue or pull request", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "currentTitle", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "previousTitle", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "RenamedTitleSubject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "RenamedTitleSubject", - "description": "An object which has a renamable title", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "ReopenDiscussionInput", - "description": "Autogenerated input type of ReopenDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "discussionId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReopenDiscussionPayload", - "description": "Autogenerated return type of ReopenDiscussion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ReopenIssueInput", - "description": "Autogenerated input type of ReopenIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReopenIssuePayload", - "description": "Autogenerated return type of ReopenIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ReopenPullRequestInput", - "description": "Autogenerated input type of ReopenPullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReopenPullRequestPayload", - "description": "Autogenerated return type of ReopenPullRequest", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReopenedEvent", - "description": "Represents a 'reopened' event on any `Closable`.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Closable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stateReason", - "args": [], - "type": {"kind": "ENUM", "name": "IssueStateReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoAccessAuditEntry", - "description": "Audit log entry for a repo.access event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": {"kind": "ENUM", "name": "RepoAccessAuditEntryVisibility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepoAccessAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoAddMemberAuditEntry", - "description": "Audit log entry for a repo.add_member event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": {"kind": "ENUM", "name": "RepoAddMemberAuditEntryVisibility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepoAddMemberAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoAddTopicAuditEntry", - "description": "Audit log entry for a repo.add_topic event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topic", - "args": [], - "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topicName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "TopicAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoArchivedAuditEntry", - "description": "Audit log entry for a repo.archived event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": {"kind": "ENUM", "name": "RepoArchivedAuditEntryVisibility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepoArchivedAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoChangeMergeSettingAuditEntry", - "description": "Audit log entry for a repo.change_merge_setting event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isEnabled", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeType", - "args": [], - "type": { - "kind": "ENUM", - "name": "RepoChangeMergeSettingAuditEntryMergeType", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepoChangeMergeSettingAuditEntryMergeType", - "description": "The merge options available for pull requests to this repository.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MERGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REBASE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SQUASH", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", - "description": "Audit log entry for a repo.config.disable_anonymous_git_access event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", - "description": "Audit log entry for a repo.config.disable_collaborators_only event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableContributorsOnlyAuditEntry", - "description": "Audit log entry for a repo.config.disable_contributors_only event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", - "description": "Audit log entry for a repo.config.disable_sockpuppet_disallowed event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", - "description": "Audit log entry for a repo.config.enable_anonymous_git_access event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", - "description": "Audit log entry for a repo.config.enable_collaborators_only event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableContributorsOnlyAuditEntry", - "description": "Audit log entry for a repo.config.enable_contributors_only event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", - "description": "Audit log entry for a repo.config.enable_sockpuppet_disallowed event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigLockAnonymousGitAccessAuditEntry", - "description": "Audit log entry for a repo.config.lock_anonymous_git_access event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", - "description": "Audit log entry for a repo.config.unlock_anonymous_git_access event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoCreateAuditEntry", - "description": "Audit log entry for a repo.create event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "forkParentName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "forkSourceName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": {"kind": "ENUM", "name": "RepoCreateAuditEntryVisibility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepoCreateAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoDestroyAuditEntry", - "description": "Audit log entry for a repo.destroy event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": {"kind": "ENUM", "name": "RepoDestroyAuditEntryVisibility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepoDestroyAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoRemoveMemberAuditEntry", - "description": "Audit log entry for a repo.remove_member event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": {"kind": "ENUM", "name": "RepoRemoveMemberAuditEntryVisibility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepoRemoveMemberAuditEntryVisibility", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepoRemoveTopicAuditEntry", - "description": "Audit log entry for a repo.remove_topic event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topic", - "args": [], - "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topicName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "TopicAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ReportedContentClassifiers", - "description": "The reasons a piece of content can be reported or minimized.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "SPAM", "isDeprecated": False, "deprecationReason": None}, - {"name": "ABUSE", "isDeprecated": False, "deprecationReason": None}, - {"name": "OFF_TOPIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "OUTDATED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DUPLICATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "RESOLVED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Repository", - "description": "A repository contains the content for a project.", - "fields": [ - { - "name": "allowUpdateBranch", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "archivedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assignableUsers", - "args": [ - { - "name": "query", - "description": "Filters users with query on user name and login.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "autoMergeAllowed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "branchProtectionRules", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "BranchProtectionRuleConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "codeOfConduct", - "args": [], - "type": {"kind": "OBJECT", "name": "CodeOfConduct", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "codeowners", - "args": [ - { - "name": "refName", - "description": "The ref name used to return the associated `CODEOWNERS` file.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RepositoryCodeowners", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "collaborators", - "args": [ - { - "name": "affiliation", - "description": "Collaborators affiliation level with a repository.", - "type": {"kind": "ENUM", "name": "CollaboratorAffiliation", "ofType": None}, - "defaultValue": None, - }, - { - "name": "login", - "description": "The login of one specific collaborator.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "Filters users with query on user name and login", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "RepositoryCollaboratorConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitComments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contactLinks", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryContactLink", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contributingGuidelines", - "args": [], - "type": {"kind": "OBJECT", "name": "ContributingGuidelines", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "defaultBranchRef", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deleteBranchOnMerge", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dependencyGraphManifests", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "withDependencies", - "description": "Flag to scope to only manifests with dependencies", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "dependenciesFirst", - "description": "Number of dependencies to fetch", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "dependenciesAfter", - "description": "Cursor to paginate dependencies", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "DependencyGraphManifestConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployKeys", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeployKeyConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deployments", - "args": [ - { - "name": "environments", - "description": "Environments to list deployments for", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for deployments returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "DeploymentOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "descriptionHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [ - { - "name": "number", - "description": "The number for the discussion to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussionCategories", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "filterByAssignable", - "description": "Filter by categories that are assignable by the viewer.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCategoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussionCategory", - "args": [ - { - "name": "slug", - "description": "The slug of the discussion category to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "categoryId", - "description": "Only include discussions that belong to the category with this ID.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "states", - "description": "A list of states to filter the discussions by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DiscussionState", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - { - "name": "orderBy", - "description": "Ordering options for discussions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "DiscussionOrder", "ofType": None}, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - { - "name": "answered", - "description": "Only show answered or unanswered discussions", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "diskUsage", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environment", - "args": [ - { - "name": "name", - "description": "The name of the environment to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Environment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the environments", - "type": {"kind": "INPUT_OBJECT", "name": "Environments", "ofType": None}, - "defaultValue": "{field: NAME, direction: ASC}", - }, - { - "name": "names", - "description": "The names of the environments to be returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "EnvironmentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "forkCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "forkingAllowed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "forks", - "args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": "[OWNER, COLLABORATOR]", - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fundingLinks", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "FundingLink", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasDiscussionsEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasIssuesEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasProjectsEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasSponsorshipsEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasVulnerabilityAlertsEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasWikiEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "homepageUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "interactionAbility", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryInteractionAbility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isArchived", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isBlankIssuesEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDisabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isEmpty", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isFork", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isInOrganization", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isLocked", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMirror", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPrivate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSecurityPolicyEnabled", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isTemplate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isUserConfigurationRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [ - { - "name": "number", - "description": "The number for the issue to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issueOrPullRequest", - "args": [ - { - "name": "number", - "description": "The number for the issue to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issueTemplates", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueTemplate", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issues", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the issues by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "filterBy", - "description": "Filtering options for issues returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueFilters", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "label", - "args": [ - { - "name": "name", - "description": "Label name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Label", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labels", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for labels returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "LabelOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: ASC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "If provided, searches labels by name and description.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "LabelConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "languages", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "LanguageOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "LanguageConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "latestRelease", - "args": [], - "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "licenseInfo", - "args": [], - "type": {"kind": "OBJECT", "name": "License", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockReason", - "args": [], - "type": {"kind": "ENUM", "name": "RepositoryLockReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mentionableUsers", - "args": [ - { - "name": "query", - "description": "Filters users with query on user name and login", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeCommitAllowed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeCommitMessage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MergeCommitMessage", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeCommitTitle", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MergeCommitTitle", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mergeQueue", - "args": [ - { - "name": "branch", - "description": "The name of the branch to get the merge queue for. Case sensitive.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "MergeQueue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "milestone", - "args": [ - { - "name": "number", - "description": "The number for the milestone to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "milestones", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "states", - "description": "Filter by the state of the milestones.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MilestoneState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for milestones.", - "type": {"kind": "INPUT_OBJECT", "name": "MilestoneOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "Filters milestones with a query on the title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "MilestoneConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mirrorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nameWithOwner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "object", - "args": [ - { - "name": "oid", - "description": "The Git object ID", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "expression", - "description": "A Git revision expression suitable for rev-parse", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "openGraphImageUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "packages", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "names", - "description": "Find packages by their names.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "description": "Find packages in a repository by ID.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "packageType", - "description": "Filter registry package by type.", - "type": {"kind": "ENUM", "name": "PackageType", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": {"kind": "INPUT_OBJECT", "name": "PackageOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parent", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedDiscussions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnedDiscussionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedIssues", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "PinnedIssueConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "planFeatures", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryPlanFeatures", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "primaryLanguage", - "args": [], - "type": {"kind": "OBJECT", "name": "Language", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [ - { - "name": "number", - "description": "The project number to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [ - { - "name": "number", - "description": "The Project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projects", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for projects returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "search", - "description": "Query to search projects by, currently only searching by name.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the projects by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsV2", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "A project to search for linked to the repo.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, - "defaultValue": "{field: NUMBER, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [ - { - "name": "number", - "description": "The number for the pull request to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestTemplates", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestTemplate", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequests", - "args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pushedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rebaseMergeAllowed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "recentProjects", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [ - { - "name": "qualifiedName", - "description": "The ref to retrieve. Fully qualified matches are checked in order (`refs/heads/master`) before falling back onto checks for short name matches (`master`).", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "refs", - "args": [ - { - "name": "query", - "description": "Filters refs with query on name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "refPrefix", - "description": "A ref name prefix like `refs/heads/`, `refs/tags/`, etc.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "description": "DEPRECATED: use orderBy. The ordering direction.", - "type": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for refs returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "RefOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "RefConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "release", - "args": [ - { - "name": "tagName", - "description": "The name of the Tag the Release was created from", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Release", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "releases", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "ReleaseOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReleaseConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryTopics", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryTopicConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ruleset", - "args": [ - { - "name": "includeParents", - "description": "Include rulesets configured at higher levels that apply to this repository", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "databaseId", - "description": "The ID of the ruleset to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rulesets", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "includeParents", - "description": "Return rulesets configured at higher levels that apply to this repository", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": {"kind": "OBJECT", "name": "RepositoryRulesetConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "securityPolicyUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "shortDescriptionHTML", - "args": [ - { - "name": "limit", - "description": "How many characters to return.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "200", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "squashMergeAllowed", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "squashMergeCommitMessage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SquashMergeCommitMessage", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "squashMergeCommitTitle", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SquashMergeCommitTitle", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "squashPrTitleUsedAsDefault", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "`squashPrTitleUsedAsDefault` will be removed. Use `Repository.squashMergeCommitTitle` instead. Removal on 2023-04-01 UTC.", - }, - { - "name": "sshUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitSSHRemote", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stargazerCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stargazers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StargazerConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "submodules", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SubmoduleConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tempCloneToken", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "templateRepository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "usesCustomOpenGraphImage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanAdminister", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanCreateProjects", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSubscribe", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdateTopics", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDefaultCommitEmail", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDefaultMergeMethod", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestMergeMethod", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasStarred", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerPermission", - "args": [], - "type": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerPossibleCommitEmails", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerSubscription", - "args": [], - "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "vulnerabilityAlert", - "args": [ - { - "name": "number", - "description": "The number for the vulnerability alert to be returned.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "vulnerabilityAlerts", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "states", - "description": "Filter by the state of the alert", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertState", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "dependencyScopes", - "description": "Filter by the scope of the alert's dependency", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertDependencyScope", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlertConnection", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "watchers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "webCommitSignoffRequired", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "PackageOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2Recent", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryInfo", "ofType": None}, - {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, - {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryAffiliation", - "description": "The affiliation of a user to a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, - {"name": "COLLABORATOR", "isDeprecated": False, "deprecationReason": None}, - {"name": "ORGANIZATION_MEMBER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "RepositoryAuditEntryData", - "description": "Metadata for an audit entry with action repo.*", - "fields": [ - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "OrgRestoreMemberMembershipRepositoryAuditEntryData", - "ofType": None, - }, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingDisableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "PrivateRepositoryForkingEnableAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoArchivedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoChangeMergeSettingAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigDisableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableCollaboratorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableContributorsOnlyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigEnableSockpuppetDisallowedAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigLockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoConfigUnlockAnonymousGitAccessAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoCreateAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoDestroyAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "RepositoryCodeowners", - "description": "Information extracted from a repository's `CODEOWNERS` file.", - "fields": [ - { - "name": "errors", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryCodeownersError", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryCodeownersError", - "description": "An error in a `CODEOWNERS` file.", - "fields": [ - { - "name": "column", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "kind", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "line", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "source", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "suggestion", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryCollaboratorConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryCollaboratorEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryCollaboratorEdge", - "description": "Represents a user who is a collaborator of a repository.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permission", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permissionSources", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PermissionSource", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryConnection", - "description": "A list of repositories owned by the subject.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalDiskUsage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryContactLink", - "description": "A repository contact link.", - "fields": [ - { - "name": "about", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryContributionType", - "description": "The reason a repository is listed as 'contributed'.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "COMMIT", "isDeprecated": False, "deprecationReason": None}, - {"name": "ISSUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, - {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, - {"name": "PULL_REQUEST_REVIEW", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "RepositoryDiscussionAuthor", - "description": "Represents an author of discussions in repositories.", - "fields": [ - { - "name": "repositoryDiscussions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for discussions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "DiscussionOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - { - "name": "repositoryId", - "description": "Filter discussions to only those in a specific repository.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "answered", - "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "states", - "description": "A list of states to filter the discussions by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DiscussionState", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "INTERFACE", - "name": "RepositoryDiscussionCommentAuthor", - "description": "Represents an author of discussion comments in repositories.", - "fields": [ - { - "name": "repositoryDiscussionComments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "description": "Filter discussion comments to only those in a specific repository.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "onlyAnswers", - "description": "Filter discussion comments to only those that were marked as the answer", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "RepositoryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryIdConditionTarget", - "description": "Parameters to be used for the repository_id condition", - "fields": [ - { - "name": "repositoryIds", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryIdConditionTargetInput", - "description": "Parameters to be used for the repository_id condition", - "fields": None, - "inputFields": [ - { - "name": "repositoryIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "RepositoryInfo", - "description": "A subset of repository info.", - "fields": [ - { - "name": "archivedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "descriptionHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "forkCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasDiscussionsEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasIssuesEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasProjectsEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasSponsorshipsEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasWikiEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "homepageUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isArchived", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isFork", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isInOrganization", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isLocked", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isMirror", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPrivate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isTemplate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "licenseInfo", - "args": [], - "type": {"kind": "OBJECT", "name": "License", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockReason", - "args": [], - "type": {"kind": "ENUM", "name": "RepositoryLockReason", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mirrorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nameWithOwner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "openGraphImageUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pushedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "shortDescriptionHTML", - "args": [ - { - "name": "limit", - "description": "How many characters to return.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "200", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "usesCustomOpenGraphImage", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "visibility", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [{"kind": "OBJECT", "name": "Repository", "ofType": None}], - }, - { - "kind": "OBJECT", - "name": "RepositoryInteractionAbility", - "description": "Repository interaction limit that applies to this object.", - "fields": [ - { - "name": "expiresAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "limit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "origin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimitOrigin", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryInteractionLimit", - "description": "A repository interaction limit.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "EXISTING_USERS", "isDeprecated": False, "deprecationReason": None}, - {"name": "CONTRIBUTORS_ONLY", "isDeprecated": False, "deprecationReason": None}, - {"name": "COLLABORATORS_ONLY", "isDeprecated": False, "deprecationReason": None}, - {"name": "NO_LIMIT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryInteractionLimitExpiry", - "description": "The length for a repository interaction limit to be enabled for.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ONE_DAY", "isDeprecated": False, "deprecationReason": None}, - {"name": "THREE_DAYS", "isDeprecated": False, "deprecationReason": None}, - {"name": "ONE_WEEK", "isDeprecated": False, "deprecationReason": None}, - {"name": "ONE_MONTH", "isDeprecated": False, "deprecationReason": None}, - {"name": "SIX_MONTHS", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryInteractionLimitOrigin", - "description": "Indicates where an interaction limit is configured.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, - {"name": "ORGANIZATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "USER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryInvitation", - "description": "An invitation for a user to be added to a repository.", - "fields": [ - { - "name": "email", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitee", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "inviter", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permalink", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permission", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "INTERFACE", "name": "RepositoryInfo", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryInvitationConnection", - "description": "A list of repository invitations.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryInvitationEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryInvitation", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryInvitationEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryInvitation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryInvitationOrder", - "description": "Ordering options for repository invitation connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryInvitationOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryInvitationOrderField", - "description": "Properties by which repository invitation connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryLockReason", - "description": "The possible reasons a given repository could be in a locked state.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MOVING", "isDeprecated": False, "deprecationReason": None}, - {"name": "BILLING", "isDeprecated": False, "deprecationReason": None}, - {"name": "RENAME", "isDeprecated": False, "deprecationReason": None}, - {"name": "MIGRATING", "isDeprecated": False, "deprecationReason": None}, - {"name": "TRADE_RESTRICTION", "isDeprecated": False, "deprecationReason": None}, - {"name": "TRANSFERRING_OWNERSHIP", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryMigration", - "description": "A GitHub Enterprise Importer (GEI) repository migration.", - "fields": [ - { - "name": "continueOnError", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "failureReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "migrationLogUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "migrationSource", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "MigrationSource", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sourceUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "MigrationState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "warningsCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Migration", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryMigrationConnection", - "description": "A list of migrations.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryMigrationEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryMigrationEdge", - "description": "Represents a repository migration.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryMigrationOrder", - "description": "Ordering options for repository migrations.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryMigrationOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryMigrationOrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryMigrationOrderDirection", - "description": "Possible directions in which to order a list of repository migrations when provided an `orderBy` argument.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ASC", "isDeprecated": False, "deprecationReason": None}, - {"name": "DESC", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryMigrationOrderField", - "description": "Properties by which repository migrations can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryNameConditionTarget", - "description": "Parameters to be used for the repository_name condition", - "fields": [ - { - "name": "exclude", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "include", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "protected", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryNameConditionTargetInput", - "description": "Parameters to be used for the repository_name condition", - "fields": None, - "inputFields": [ - { - "name": "exclude", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "include", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "protected", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "RepositoryNode", - "description": "Represents a object that belongs to a repository.", - "fields": [ - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - {"kind": "OBJECT", "name": "CommitCommentThread", "ofType": None}, - {"kind": "OBJECT", "name": "DependabotUpdate", "ofType": None}, - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionCategory", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "PinnedDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestCommitCommentThread", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryOrder", - "description": "Ordering options for repository connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryOrderField", - "description": "Properties by which repository connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUSHED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, - {"name": "STARGAZERS", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "RepositoryOwner", - "description": "Represents an owner of a Repository.", - "fields": [ - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositories", - "args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": "[OWNER, COLLABORATOR]", - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isArchived", - "description": "If non-null, filters repositories according to whether they are archived and not maintained", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isFork", - "description": "If non-null, filters repositories according to whether they are forks of another repository", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [ - { - "name": "name", - "description": "Name of Repository to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "followRenames", - "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "ENUM", - "name": "RepositoryPermission", - "description": "The access level to a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "MAINTAIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "WRITE", "isDeprecated": False, "deprecationReason": None}, - {"name": "TRIAGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "READ", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryPlanFeatures", - "description": "Information about the availability of features and limits for a repository based on its billing plan.", - "fields": [ - { - "name": "codeowners", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "draftPullRequests", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "maximumAssignees", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "maximumManualReviewRequests", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamReviewRequests", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryPrivacy", - "description": "The privacy of a repository", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryPropertyConditionTarget", - "description": "Parameters to be used for the repository_property condition", - "fields": [ - { - "name": "exclude", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PropertyTargetDefinition", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "include", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "PropertyTargetDefinition", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryPropertyConditionTargetInput", - "description": "Parameters to be used for the repository_property condition", - "fields": None, - "inputFields": [ - { - "name": "exclude", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PropertyTargetDefinitionInput", - "ofType": None, - }, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "include", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PropertyTargetDefinitionInput", - "ofType": None, - }, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRule", - "description": "A repository rule.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parameters", - "args": [], - "type": {"kind": "UNION", "name": "RuleParameters", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryRuleset", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "type", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryRuleType", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleConditions", - "description": "Set of conditions that determine if a ruleset will evaluate", - "fields": [ - { - "name": "refName", - "args": [], - "type": {"kind": "OBJECT", "name": "RefNameConditionTarget", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryId", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryIdConditionTarget", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryNameConditionTarget", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryProperty", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryPropertyConditionTarget", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleConditionsInput", - "description": "Specifies the conditions required for a ruleset to evaluate", - "fields": None, - "inputFields": [ - { - "name": "refName", - "type": {"kind": "INPUT_OBJECT", "name": "RefNameConditionTargetInput", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryName", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryNameConditionTargetInput", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryIdConditionTargetInput", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "repositoryProperty", - "type": { - "kind": "INPUT_OBJECT", - "name": "RepositoryPropertyConditionTargetInput", - "ofType": None, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleConnection", - "description": "The connection type for RepositoryRule.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryRuleEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryRule", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleInput", - "description": "Specifies the attributes for a new or updated rule.", - "fields": None, - "inputFields": [ - {"name": "id", "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, "defaultValue": None}, - { - "name": "type", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryRuleType", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "parameters", - "type": {"kind": "INPUT_OBJECT", "name": "RuleParametersInput", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryRuleOrder", - "description": "Ordering options for repository rules.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryRuleOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryRuleOrderField", - "description": "Properties by which repository rule connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "TYPE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryRuleType", - "description": "The rule types supported in rulesets", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "DELETION", "isDeprecated": False, "deprecationReason": None}, - {"name": "REQUIRED_LINEAR_HISTORY", "isDeprecated": False, "deprecationReason": None}, - {"name": "MERGE_QUEUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REQUIRED_REVIEW_THREAD_RESOLUTION", "isDeprecated": False, "deprecationReason": None}, - {"name": "REQUIRED_DEPLOYMENTS", "isDeprecated": False, "deprecationReason": None}, - {"name": "REQUIRED_SIGNATURES", "isDeprecated": False, "deprecationReason": None}, - {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, - {"name": "REQUIRED_STATUS_CHECKS", "isDeprecated": False, "deprecationReason": None}, - {"name": "REQUIRED_WORKFLOW_STATUS_CHECKS", "isDeprecated": False, "deprecationReason": None}, - {"name": "NON_FAST_FORWARD", "isDeprecated": False, "deprecationReason": None}, - {"name": "AUTHORIZATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "TAG", "isDeprecated": False, "deprecationReason": None}, - {"name": "MERGE_QUEUE_LOCKED_REF", "isDeprecated": False, "deprecationReason": None}, - {"name": "LOCK_BRANCH", "isDeprecated": False, "deprecationReason": None}, - {"name": "MAX_REF_UPDATES", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMIT_MESSAGE_PATTERN", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMIT_AUTHOR_EMAIL_PATTERN", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMITTER_EMAIL_PATTERN", "isDeprecated": False, "deprecationReason": None}, - {"name": "BRANCH_NAME_PATTERN", "isDeprecated": False, "deprecationReason": None}, - {"name": "TAG_NAME_PATTERN", "isDeprecated": False, "deprecationReason": None}, - {"name": "WORKFLOWS", "isDeprecated": False, "deprecationReason": None}, - {"name": "SECRET_SCANNING", "isDeprecated": False, "deprecationReason": None}, - {"name": "WORKFLOW_UPDATES", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRuleset", - "description": "A repository ruleset.", - "fields": [ - { - "name": "bypassActors", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActorConnection", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "conditions", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryRuleConditions", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enforcement", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RuleEnforcement", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "rules", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "type", - "description": "The type of rule.", - "type": {"kind": "ENUM", "name": "RepositoryRuleType", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "RepositoryRuleConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "source", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "RuleSource", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "target", - "args": [], - "type": {"kind": "ENUM", "name": "RepositoryRulesetTarget", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActor", - "description": "A team or app that has the ability to bypass a rules defined on a ruleset", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "BypassActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bypassMode", - "args": [], - "type": {"kind": "ENUM", "name": "RepositoryRulesetBypassActorBypassMode", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationAdmin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryRoleDatabaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryRoleName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryRuleset", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryRulesetBypassActorBypassMode", - "description": "The bypass mode for a specific actor on a ruleset.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ALWAYS", "isDeprecated": False, "deprecationReason": None}, - {"name": "PULL_REQUEST", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActorConnection", - "description": "The connection type for RepositoryRulesetBypassActor.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActorEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryRulesetBypassActor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetBypassActorEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryRulesetBypassActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RepositoryRulesetBypassActorInput", - "description": "Specifies the attributes for a new or updated ruleset bypass actor. Only one of `actor_id`, `repository_role_database_id`, or `organization_admin` should be specified.", - "fields": None, - "inputFields": [ - { - "name": "actorId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryRoleDatabaseId", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationAdmin", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "bypassMode", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryRulesetBypassActorBypassMode", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetConnection", - "description": "The connection type for RepositoryRuleset.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryRulesetEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryRulesetEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryRulesetTarget", - "description": "The targets supported for rulesets", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "BRANCH", "isDeprecated": False, "deprecationReason": None}, - {"name": "TAG", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryTopic", - "description": "A repository-topic connects a repository to a topic.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topic", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Topic", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryTopicConnection", - "description": "The connection type for RepositoryTopic.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryTopicEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryTopic", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryTopicEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryTopic", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryVisibility", - "description": "The repository's visibility level.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "INTERNAL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeDisableAuditEntry", - "description": "Audit log entry for a repository_visibility_change.disable event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryVisibilityChangeEnableAuditEntry", - "description": "Audit log entry for a repository_visibility_change.enable event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseSlug", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterpriseUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "EnterpriseAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlert", - "description": "A Dependabot alert for a repository with a dependency affected by a security vulnerability.", - "fields": [ - { - "name": "autoDismissedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dependabotUpdate", - "args": [], - "type": {"kind": "OBJECT", "name": "DependabotUpdate", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dependencyScope", - "args": [], - "type": { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertDependencyScope", - "ofType": None, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismissComment", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismissReason", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismissedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismisser", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fixedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "securityAdvisory", - "args": [], - "type": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "securityVulnerability", - "args": [], - "type": {"kind": "OBJECT", "name": "SecurityVulnerability", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryVulnerabilityAlertState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "vulnerableManifestFilename", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "vulnerableManifestPath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "vulnerableRequirements", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryNode", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlertConnection", - "description": "The connection type for RepositoryVulnerabilityAlert.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlertEdge", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertDependencyScope", - "description": "The possible scopes of an alert's dependency.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "RUNTIME", "isDeprecated": False, "deprecationReason": None}, - {"name": "DEVELOPMENT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RepositoryVulnerabilityAlertEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryVulnerabilityAlert", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RepositoryVulnerabilityAlertState", - "description": "The possible states of an alert", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "FIXED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISMISSED", "isDeprecated": False, "deprecationReason": None}, - {"name": "AUTO_DISMISSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestReviewsInput", - "description": "Autogenerated input type of RequestReviews", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "userIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "teamIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "union", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RequestReviewsPayload", - "description": "Autogenerated return type of RequestReviews", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requestedReviewersEdge", - "args": [], - "type": {"kind": "OBJECT", "name": "UserEdge", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RequestableCheckStatusState", - "description": "The possible states that can be requested when creating a check run.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "QUEUED", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN_PROGRESS", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMPLETED", "isDeprecated": False, "deprecationReason": None}, - {"name": "WAITING", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "RequestedReviewer", - "description": "Types that can be requested reviewers.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Bot", "ofType": None}, - {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "RequestedReviewerConnection", - "description": "The connection type for RequestedReviewer.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RequestedReviewerEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RequestedReviewerEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "RequirableByPullRequest", - "description": "Represents a type that can be required by a pull request for merging.", - "fields": [ - { - "name": "isRequired", - "args": [ - { - "name": "pullRequestId", - "description": "The id of the pull request this is required for", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestNumber", - "description": "The number of the pull request this is required for", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, - {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "RequiredDeploymentsParameters", - "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", - "fields": [ - { - "name": "requiredDeploymentEnvironments", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RequiredDeploymentsParametersInput", - "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", - "fields": None, - "inputFields": [ - { - "name": "requiredDeploymentEnvironments", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "defaultValue": None, - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RequiredStatusCheckDescription", - "description": "Represents a required status check for a protected branch, but not any specific run of that check.", - "fields": [ - { - "name": "app", - "args": [], - "type": {"kind": "OBJECT", "name": "App", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "context", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusCheckInput", - "description": "Specifies the attributes for a new or updated required status check.", - "fields": None, - "inputFields": [ - { - "name": "context", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "appId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RequiredStatusChecksParameters", - "description": "Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.", - "fields": [ - { - "name": "requiredStatusChecks", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusCheckConfiguration", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "strictRequiredStatusChecksPolicy", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusChecksParametersInput", - "description": "Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.", - "fields": None, - "inputFields": [ - { - "name": "requiredStatusChecks", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusCheckConfigurationInput", - "ofType": None, - }, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "strictRequiredStatusChecksPolicy", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RerequestCheckSuiteInput", - "description": "Autogenerated input type of RerequestCheckSuite", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "checkSuiteId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RerequestCheckSuitePayload", - "description": "Autogenerated return type of RerequestCheckSuite", - "fields": [ - { - "name": "checkSuite", - "args": [], - "type": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "ResolveReviewThreadInput", - "description": "Autogenerated input type of ResolveReviewThread", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "threadId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ResolveReviewThreadPayload", - "description": "Autogenerated return type of ResolveReviewThread", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "thread", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RestrictedContribution", - "description": "Represents a private contribution a user made on GitHub.", - "fields": [ - { - "name": "isRestricted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "occurredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Contribution", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RetireSponsorsTierInput", - "description": "Autogenerated input type of RetireSponsorsTier", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "tierId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RetireSponsorsTierPayload", - "description": "Autogenerated return type of RetireSponsorsTier", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsTier", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RevertPullRequestInput", - "description": "Autogenerated input type of RevertPullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "draft", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RevertPullRequestPayload", - "description": "Autogenerated return type of RevertPullRequest", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "revertPullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewDismissalAllowance", - "description": "A user, team, or app who has the ability to dismiss a review on a protected branch.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "ReviewDismissalAllowanceActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "branchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "ReviewDismissalAllowanceActor", - "description": "Types that can be an actor.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "App", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "ReviewDismissalAllowanceConnection", - "description": "The connection type for ReviewDismissalAllowance.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReviewDismissalAllowanceEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReviewDismissalAllowance", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewDismissalAllowanceEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ReviewDismissalAllowance", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewDismissedEvent", - "description": "Represents a 'review_dismissed' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismissalMessage", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dismissalMessageHTML", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "previousReviewState", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestReviewState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestCommit", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "review", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewRequest", - "description": "A request for a user to review a pull request.", - "fields": [ - { - "name": "asCodeOwner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requestedReviewer", - "args": [], - "type": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewRequestConnection", - "description": "The connection type for ReviewRequest.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReviewRequestEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReviewRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewRequestEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "ReviewRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewRequestRemovedEvent", - "description": "Represents an 'review_request_removed' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requestedReviewer", - "args": [], - "type": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewRequestedEvent", - "description": "Represents an 'review_requested' event on a given pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "requestedReviewer", - "args": [], - "type": {"kind": "UNION", "name": "RequestedReviewer", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ReviewStatusHovercardContext", - "description": "A hovercard context with a message describing the current code review state of the pull\\nrequest.\\n", - "fields": [ - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "octicon", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewDecision", - "args": [], - "type": {"kind": "ENUM", "name": "PullRequestReviewDecision", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RevokeEnterpriseOrganizationsMigratorRoleInput", - "description": "Autogenerated input type of RevokeEnterpriseOrganizationsMigratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "login", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RevokeEnterpriseOrganizationsMigratorRolePayload", - "description": "Autogenerated return type of RevokeEnterpriseOrganizationsMigratorRole", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "RevokeMigratorRoleInput", - "description": "Autogenerated input type of RevokeMigratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "actor", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "actorType", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ActorType", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "RevokeMigratorRolePayload", - "description": "Autogenerated return type of RevokeMigratorRole", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "success", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RoleInOrganization", - "description": "Possible roles a user may have in relation to an organization.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OWNER", "isDeprecated": False, "deprecationReason": None}, - {"name": "DIRECT_MEMBER", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNAFFILIATED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "RuleEnforcement", - "description": "The level of enforcement for a rule or ruleset.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "ACTIVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "EVALUATE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "RuleParameters", - "description": "Types which can be parameters for `RepositoryRule` objects.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "BranchNamePatternParameters", "ofType": None}, - {"kind": "OBJECT", "name": "CommitAuthorEmailPatternParameters", "ofType": None}, - {"kind": "OBJECT", "name": "CommitMessagePatternParameters", "ofType": None}, - {"kind": "OBJECT", "name": "CommitterEmailPatternParameters", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestParameters", "ofType": None}, - {"kind": "OBJECT", "name": "RequiredDeploymentsParameters", "ofType": None}, - {"kind": "OBJECT", "name": "RequiredStatusChecksParameters", "ofType": None}, - {"kind": "OBJECT", "name": "TagNamePatternParameters", "ofType": None}, - {"kind": "OBJECT", "name": "UpdateParameters", "ofType": None}, - {"kind": "OBJECT", "name": "WorkflowsParameters", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "RuleParametersInput", - "description": "Specifies the parameters for a `RepositoryRule` object. Only one of the fields should be specified.", - "fields": None, - "inputFields": [ - { - "name": "update", - "type": {"kind": "INPUT_OBJECT", "name": "UpdateParametersInput", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiredDeployments", - "type": { - "kind": "INPUT_OBJECT", - "name": "RequiredDeploymentsParametersInput", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "pullRequest", - "type": {"kind": "INPUT_OBJECT", "name": "PullRequestParametersInput", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiredStatusChecks", - "type": { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusChecksParametersInput", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "commitMessagePattern", - "type": { - "kind": "INPUT_OBJECT", - "name": "CommitMessagePatternParametersInput", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "commitAuthorEmailPattern", - "type": { - "kind": "INPUT_OBJECT", - "name": "CommitAuthorEmailPatternParametersInput", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "committerEmailPattern", - "type": { - "kind": "INPUT_OBJECT", - "name": "CommitterEmailPatternParametersInput", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "branchNamePattern", - "type": { - "kind": "INPUT_OBJECT", - "name": "BranchNamePatternParametersInput", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "tagNamePattern", - "type": {"kind": "INPUT_OBJECT", "name": "TagNamePatternParametersInput", "ofType": None}, - "defaultValue": None, - }, - { - "name": "workflows", - "type": {"kind": "INPUT_OBJECT", "name": "WorkflowsParametersInput", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "RuleSource", - "description": "Types which can have `RepositoryRule` objects.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - ], - }, - { - "kind": "ENUM", - "name": "SamlDigestAlgorithm", - "description": "The possible digest algorithms used to sign SAML requests for an identity provider.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "SHA1", "isDeprecated": False, "deprecationReason": None}, - {"name": "SHA256", "isDeprecated": False, "deprecationReason": None}, - {"name": "SHA384", "isDeprecated": False, "deprecationReason": None}, - {"name": "SHA512", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SamlSignatureAlgorithm", - "description": "The possible signature algorithms used to sign SAML requests for a Identity Provider.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "RSA_SHA1", "isDeprecated": False, "deprecationReason": None}, - {"name": "RSA_SHA256", "isDeprecated": False, "deprecationReason": None}, - {"name": "RSA_SHA384", "isDeprecated": False, "deprecationReason": None}, - {"name": "RSA_SHA512", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SavedReply", - "description": "A Saved Reply is text a user can use to reply quickly.", - "fields": [ - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SavedReplyConnection", - "description": "The connection type for SavedReply.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SavedReplyEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SavedReply", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SavedReplyEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "SavedReply", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SavedReplyOrder", - "description": "Ordering options for saved reply connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SavedReplyOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SavedReplyOrderField", - "description": "Properties by which saved reply connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "SearchResultItem", - "description": "The results of a search.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "App", "ofType": None}, - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "MarketplaceListing", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "SearchResultItemConnection", - "description": "A list of results that matched against a search query. Regardless of the number of matches, a maximum of 1,000 results will be available across all types, potentially split across many pages.", - "fields": [ - { - "name": "codeCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussionCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SearchResultItemEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issueCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "SearchResultItem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "wikiCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SearchResultItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "SearchResultItem", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "textMatches", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TextMatch", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SearchType", - "description": "Represents the individual results of a search.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ISSUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, - {"name": "USER", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISCUSSION", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisory", - "description": "A GitHub Security Advisory", - "fields": [ - { - "name": "classification", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SecurityAdvisoryClassification", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "cvss", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CVSS", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "cwes", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CWEConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ghsaId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "identifiers", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisoryIdentifier", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "notificationsPermalink", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "origin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permalink", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publishedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "references", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SecurityAdvisoryReference", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "severity", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SecurityAdvisorySeverity", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "summary", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "vulnerabilities", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for the returned topics.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SecurityVulnerabilityOrder", - "ofType": None, - }, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - { - "name": "ecosystem", - "description": "An ecosystem to filter vulnerabilities by.", - "type": {"kind": "ENUM", "name": "SecurityAdvisoryEcosystem", "ofType": None}, - "defaultValue": None, - }, - { - "name": "package", - "description": "A package name to filter vulnerabilities by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "severities", - "description": "A list of severities to filter vulnerabilities by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisorySeverity", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "classifications", - "description": "A list of advisory classifications to filter vulnerabilities by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityVulnerabilityConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "withdrawnAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SecurityAdvisoryClassification", - "description": "Classification of the advisory.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "GENERAL", "isDeprecated": False, "deprecationReason": None}, - {"name": "MALWARE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryConnection", - "description": "The connection type for SecurityAdvisory.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityAdvisoryEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SecurityAdvisoryEcosystem", - "description": "The possible ecosystems of a security vulnerability's package.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "COMPOSER", "isDeprecated": False, "deprecationReason": None}, - {"name": "ERLANG", "isDeprecated": False, "deprecationReason": None}, - {"name": "ACTIONS", "isDeprecated": False, "deprecationReason": None}, - {"name": "GO", "isDeprecated": False, "deprecationReason": None}, - {"name": "MAVEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "NPM", "isDeprecated": False, "deprecationReason": None}, - {"name": "NUGET", "isDeprecated": False, "deprecationReason": None}, - {"name": "PIP", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUB", "isDeprecated": False, "deprecationReason": None}, - {"name": "RUBYGEMS", "isDeprecated": False, "deprecationReason": None}, - {"name": "RUST", "isDeprecated": False, "deprecationReason": None}, - {"name": "SWIFT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryIdentifier", - "description": "A GitHub Security Advisory Identifier", - "fields": [ - { - "name": "type", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "value", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SecurityAdvisoryIdentifierFilter", - "description": "An advisory identifier to filter results on.", - "fields": None, - "inputFields": [ - { - "name": "type", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SecurityAdvisoryIdentifierType", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "value", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SecurityAdvisoryIdentifierType", - "description": "Identifier formats available for advisories.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "GHSA", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SecurityAdvisoryOrder", - "description": "Ordering options for security advisory connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SecurityAdvisoryOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SecurityAdvisoryOrderField", - "description": "Properties by which security advisory connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PUBLISHED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryPackage", - "description": "An individual package", - "fields": [ - { - "name": "ecosystem", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SecurityAdvisoryEcosystem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryPackageVersion", - "description": "An individual package version", - "fields": [ - { - "name": "identifier", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityAdvisoryReference", - "description": "A GitHub Security Advisory Reference", - "fields": [ - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SecurityAdvisorySeverity", - "description": "Severity of the vulnerability.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "LOW", "isDeprecated": False, "deprecationReason": None}, - {"name": "MODERATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "HIGH", "isDeprecated": False, "deprecationReason": None}, - {"name": "CRITICAL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityVulnerability", - "description": "An individual vulnerability within an Advisory", - "fields": [ - { - "name": "advisory", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityAdvisory", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "firstPatchedVersion", - "args": [], - "type": {"kind": "OBJECT", "name": "SecurityAdvisoryPackageVersion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "package", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityAdvisoryPackage", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "severity", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SecurityAdvisorySeverity", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "vulnerableVersionRange", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityVulnerabilityConnection", - "description": "The connection type for SecurityVulnerability.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityVulnerabilityEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SecurityVulnerability", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SecurityVulnerabilityEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "SecurityVulnerability", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SecurityVulnerabilityOrder", - "description": "Ordering options for security vulnerability connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SecurityVulnerabilityOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SecurityVulnerabilityOrderField", - "description": "Properties by which security vulnerability connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SetEnterpriseIdentityProviderInput", - "description": "Autogenerated input type of SetEnterpriseIdentityProvider", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ssoUrl", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "issuer", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "idpCertificate", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "signatureMethod", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SamlSignatureAlgorithm", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "digestMethod", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SamlDigestAlgorithm", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SetEnterpriseIdentityProviderPayload", - "description": "Autogenerated return type of SetEnterpriseIdentityProvider", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "identityProvider", - "args": [], - "type": {"kind": "OBJECT", "name": "EnterpriseIdentityProvider", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrganizationInteractionLimitInput", - "description": "Autogenerated input type of SetOrganizationInteractionLimit", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "limit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimit", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "expiry", - "type": {"kind": "ENUM", "name": "RepositoryInteractionLimitExpiry", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SetOrganizationInteractionLimitPayload", - "description": "Autogenerated return type of SetOrganizationInteractionLimit", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SetRepositoryInteractionLimitInput", - "description": "Autogenerated input type of SetRepositoryInteractionLimit", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "limit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimit", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "expiry", - "type": {"kind": "ENUM", "name": "RepositoryInteractionLimitExpiry", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SetRepositoryInteractionLimitPayload", - "description": "Autogenerated return type of SetRepositoryInteractionLimit", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SetUserInteractionLimitInput", - "description": "Autogenerated input type of SetUserInteractionLimit", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "limit", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryInteractionLimit", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "expiry", - "type": {"kind": "ENUM", "name": "RepositoryInteractionLimitExpiry", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SetUserInteractionLimitPayload", - "description": "Autogenerated return type of SetUserInteractionLimit", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SmimeSignature", - "description": "Represents an S/MIME signature on a Commit or Tag.", - "fields": [ - { - "name": "email", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isValid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "payload", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signature", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "wasSignedByGitHub", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "GitSignature", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SocialAccount", - "description": "Social media profile associated with a user.", - "fields": [ - { - "name": "displayName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "provider", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SocialAccountProvider", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SocialAccountConnection", - "description": "The connection type for SocialAccount.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SocialAccountEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SocialAccount", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SocialAccountEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "SocialAccount", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SocialAccountProvider", - "description": "Software or company that hosts social media accounts.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "GENERIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "FACEBOOK", "isDeprecated": False, "deprecationReason": None}, - {"name": "HOMETOWN", "isDeprecated": False, "deprecationReason": None}, - {"name": "INSTAGRAM", "isDeprecated": False, "deprecationReason": None}, - {"name": "LINKEDIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "MASTODON", "isDeprecated": False, "deprecationReason": None}, - {"name": "REDDIT", "isDeprecated": False, "deprecationReason": None}, - {"name": "TWITCH", "isDeprecated": False, "deprecationReason": None}, - {"name": "TWITTER", "isDeprecated": False, "deprecationReason": None}, - {"name": "YOUTUBE", "isDeprecated": False, "deprecationReason": None}, - {"name": "NPM", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "Sponsor", - "description": "Entities that can sponsor others via GitHub Sponsors", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValue", - "description": "A GitHub account and the total amount in USD they've paid for sponsorships to a particular maintainer. Does not include payments made via Patreon.", - "fields": [ - { - "name": "amountInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "formattedAmount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueConnection", - "description": "The connection type for SponsorAndLifetimeValue.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorAndLifetimeValueEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorAndLifetimeValue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorAndLifetimeValue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorAndLifetimeValueOrder", - "description": "Ordering options for connections to get sponsor entities and associated USD amounts for GitHub Sponsors.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorAndLifetimeValueOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorAndLifetimeValueOrderField", - "description": "Properties by which sponsor and lifetime value connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "SPONSOR_LOGIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "SPONSOR_RELEVANCE", "isDeprecated": False, "deprecationReason": None}, - {"name": "LIFETIME_VALUE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorConnection", - "description": "A list of users and organizations sponsoring someone via GitHub Sponsors.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "Sponsor", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorEdge", - "description": "Represents a user or organization who is sponsoring someone in GitHub Sponsors.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "Sponsor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorOrder", - "description": "Ordering options for connections to get sponsor entities for GitHub Sponsors.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorOrderField", - "description": "Properties by which sponsor connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "RELEVANCE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Sponsorable", - "description": "Entities that can sponsor or be sponsored through GitHub Sponsors.", - "fields": [ - { - "name": "estimatedNextSponsorsPayoutInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasSponsorsListing", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSponsoredBy", - "args": [ - { - "name": "accountLogin", - "description": "The target account's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSponsoringViewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lifetimeReceivedSponsorshipValues", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for results returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorAndLifetimeValueOrder", - "ofType": None, - }, - "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "monthlyEstimatedSponsorsIncomeInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsoring", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the users and organizations returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, - "defaultValue": "{field: RELEVANCE, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsors", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "tierId", - "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsors returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, - "defaultValue": "{field: RELEVANCE, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsActivities", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "period", - "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", - "type": {"kind": "ENUM", "name": "SponsorsActivityPeriod", "ofType": None}, - "defaultValue": "MONTH", - }, - { - "name": "since", - "description": "Filter activities to those that occurred on or after this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "until", - "description": "Filter activities to those that occurred before this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for activity returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorsActivityOrder", "ofType": None}, - "defaultValue": "{field: TIMESTAMP, direction: DESC}", - }, - { - "name": "actions", - "description": "Filter activities to only the specified actions.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "ofType": None, - }, - }, - }, - "defaultValue": "[]", - }, - { - "name": "includeAsSponsor", - "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "includePrivate", - "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsActivityConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsListing", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipForViewerAsSponsor", - "args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - } - ], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipForViewerAsSponsorable", - "args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - } - ], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipNewsletters", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorship updates returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipNewsletterOrder", - "ofType": None, - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletterConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipsAsMaintainer", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "includePrivate", - "description": "Whether or not to include private sponsorships in the result set", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipsAsSponsor", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "maintainerLogins", - "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalSponsorshipAmountAsSponsorInCents", - "args": [ - { - "name": "since", - "description": "Filter payments to those that occurred on or after this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "until", - "description": "Filter payments to those that occurred before this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogins", - "description": "Filter payments to those made to the users or organizations with the specified usernames.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - ], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSponsor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerIsSponsoring", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "UNION", - "name": "SponsorableItem", - "description": "Entities that can be sponsored via GitHub Sponsors", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "SponsorableItemConnection", - "description": "The connection type for SponsorableItem.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorableItemEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "SponsorableItem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorableItemEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "SponsorableItem", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorableOrder", - "description": "Ordering options for connections to get sponsorable entities for GitHub Sponsors.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorableOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorableOrderField", - "description": "Properties by which sponsorable connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsActivity", - "description": "An event related to sponsorship activity.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorsActivityAction", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "currentPrivacyLevel", - "args": [], - "type": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "paymentSource", - "args": [], - "type": {"kind": "ENUM", "name": "SponsorshipPaymentSource", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "previousSponsorsTier", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsor", - "args": [], - "type": {"kind": "UNION", "name": "Sponsor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsTier", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "timestamp", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viaBulkSponsorship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "description": "The possible actions that GitHub Sponsors activities can represent.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NEW_SPONSORSHIP", "isDeprecated": False, "deprecationReason": None}, - {"name": "CANCELLED_SPONSORSHIP", "isDeprecated": False, "deprecationReason": None}, - {"name": "TIER_CHANGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "REFUND", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING_CHANGE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SPONSOR_MATCH_DISABLED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsActivityConnection", - "description": "The connection type for SponsorsActivity.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsActivityEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsActivity", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsActivityEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsActivity", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorsActivityOrder", - "description": "Ordering options for GitHub Sponsors activity connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorsActivityOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorsActivityOrderField", - "description": "Properties by which GitHub Sponsors activity connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "TIMESTAMP", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorsActivityPeriod", - "description": "The possible time periods for which Sponsors activities can be requested.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DAY", "isDeprecated": False, "deprecationReason": None}, - {"name": "WEEK", "isDeprecated": False, "deprecationReason": None}, - {"name": "MONTH", "isDeprecated": False, "deprecationReason": None}, - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorsCountryOrRegionCode", - "description": "Represents countries or regions for billing and residence for a GitHub Sponsors profile.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "AF", "isDeprecated": False, "deprecationReason": None}, - {"name": "AX", "isDeprecated": False, "deprecationReason": None}, - {"name": "AL", "isDeprecated": False, "deprecationReason": None}, - {"name": "DZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "AS", "isDeprecated": False, "deprecationReason": None}, - {"name": "AD", "isDeprecated": False, "deprecationReason": None}, - {"name": "AO", "isDeprecated": False, "deprecationReason": None}, - {"name": "AI", "isDeprecated": False, "deprecationReason": None}, - {"name": "AQ", "isDeprecated": False, "deprecationReason": None}, - {"name": "AG", "isDeprecated": False, "deprecationReason": None}, - {"name": "AR", "isDeprecated": False, "deprecationReason": None}, - {"name": "AM", "isDeprecated": False, "deprecationReason": None}, - {"name": "AW", "isDeprecated": False, "deprecationReason": None}, - {"name": "AU", "isDeprecated": False, "deprecationReason": None}, - {"name": "AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "AZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "BS", "isDeprecated": False, "deprecationReason": None}, - {"name": "BH", "isDeprecated": False, "deprecationReason": None}, - {"name": "BD", "isDeprecated": False, "deprecationReason": None}, - {"name": "BB", "isDeprecated": False, "deprecationReason": None}, - {"name": "BY", "isDeprecated": False, "deprecationReason": None}, - {"name": "BE", "isDeprecated": False, "deprecationReason": None}, - {"name": "BZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "BJ", "isDeprecated": False, "deprecationReason": None}, - {"name": "BM", "isDeprecated": False, "deprecationReason": None}, - {"name": "BT", "isDeprecated": False, "deprecationReason": None}, - {"name": "BO", "isDeprecated": False, "deprecationReason": None}, - {"name": "BQ", "isDeprecated": False, "deprecationReason": None}, - {"name": "BA", "isDeprecated": False, "deprecationReason": None}, - {"name": "BW", "isDeprecated": False, "deprecationReason": None}, - {"name": "BV", "isDeprecated": False, "deprecationReason": None}, - {"name": "BR", "isDeprecated": False, "deprecationReason": None}, - {"name": "IO", "isDeprecated": False, "deprecationReason": None}, - {"name": "BN", "isDeprecated": False, "deprecationReason": None}, - {"name": "BG", "isDeprecated": False, "deprecationReason": None}, - {"name": "BF", "isDeprecated": False, "deprecationReason": None}, - {"name": "BI", "isDeprecated": False, "deprecationReason": None}, - {"name": "KH", "isDeprecated": False, "deprecationReason": None}, - {"name": "CM", "isDeprecated": False, "deprecationReason": None}, - {"name": "CA", "isDeprecated": False, "deprecationReason": None}, - {"name": "CV", "isDeprecated": False, "deprecationReason": None}, - {"name": "KY", "isDeprecated": False, "deprecationReason": None}, - {"name": "CF", "isDeprecated": False, "deprecationReason": None}, - {"name": "TD", "isDeprecated": False, "deprecationReason": None}, - {"name": "CL", "isDeprecated": False, "deprecationReason": None}, - {"name": "CN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CX", "isDeprecated": False, "deprecationReason": None}, - {"name": "CC", "isDeprecated": False, "deprecationReason": None}, - {"name": "CO", "isDeprecated": False, "deprecationReason": None}, - {"name": "KM", "isDeprecated": False, "deprecationReason": None}, - {"name": "CG", "isDeprecated": False, "deprecationReason": None}, - {"name": "CD", "isDeprecated": False, "deprecationReason": None}, - {"name": "CK", "isDeprecated": False, "deprecationReason": None}, - {"name": "CR", "isDeprecated": False, "deprecationReason": None}, - {"name": "CI", "isDeprecated": False, "deprecationReason": None}, - {"name": "HR", "isDeprecated": False, "deprecationReason": None}, - {"name": "CW", "isDeprecated": False, "deprecationReason": None}, - {"name": "CY", "isDeprecated": False, "deprecationReason": None}, - {"name": "CZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "DK", "isDeprecated": False, "deprecationReason": None}, - {"name": "DJ", "isDeprecated": False, "deprecationReason": None}, - {"name": "DM", "isDeprecated": False, "deprecationReason": None}, - {"name": "DO", "isDeprecated": False, "deprecationReason": None}, - {"name": "EC", "isDeprecated": False, "deprecationReason": None}, - {"name": "EG", "isDeprecated": False, "deprecationReason": None}, - {"name": "SV", "isDeprecated": False, "deprecationReason": None}, - {"name": "GQ", "isDeprecated": False, "deprecationReason": None}, - {"name": "ER", "isDeprecated": False, "deprecationReason": None}, - {"name": "EE", "isDeprecated": False, "deprecationReason": None}, - {"name": "ET", "isDeprecated": False, "deprecationReason": None}, - {"name": "FK", "isDeprecated": False, "deprecationReason": None}, - {"name": "FO", "isDeprecated": False, "deprecationReason": None}, - {"name": "FJ", "isDeprecated": False, "deprecationReason": None}, - {"name": "FI", "isDeprecated": False, "deprecationReason": None}, - {"name": "FR", "isDeprecated": False, "deprecationReason": None}, - {"name": "GF", "isDeprecated": False, "deprecationReason": None}, - {"name": "PF", "isDeprecated": False, "deprecationReason": None}, - {"name": "TF", "isDeprecated": False, "deprecationReason": None}, - {"name": "GA", "isDeprecated": False, "deprecationReason": None}, - {"name": "GM", "isDeprecated": False, "deprecationReason": None}, - {"name": "GE", "isDeprecated": False, "deprecationReason": None}, - {"name": "DE", "isDeprecated": False, "deprecationReason": None}, - {"name": "GH", "isDeprecated": False, "deprecationReason": None}, - {"name": "GI", "isDeprecated": False, "deprecationReason": None}, - {"name": "GR", "isDeprecated": False, "deprecationReason": None}, - {"name": "GL", "isDeprecated": False, "deprecationReason": None}, - {"name": "GD", "isDeprecated": False, "deprecationReason": None}, - {"name": "GP", "isDeprecated": False, "deprecationReason": None}, - {"name": "GU", "isDeprecated": False, "deprecationReason": None}, - {"name": "GT", "isDeprecated": False, "deprecationReason": None}, - {"name": "GG", "isDeprecated": False, "deprecationReason": None}, - {"name": "GN", "isDeprecated": False, "deprecationReason": None}, - {"name": "GW", "isDeprecated": False, "deprecationReason": None}, - {"name": "GY", "isDeprecated": False, "deprecationReason": None}, - {"name": "HT", "isDeprecated": False, "deprecationReason": None}, - {"name": "HM", "isDeprecated": False, "deprecationReason": None}, - {"name": "HN", "isDeprecated": False, "deprecationReason": None}, - {"name": "HK", "isDeprecated": False, "deprecationReason": None}, - {"name": "HU", "isDeprecated": False, "deprecationReason": None}, - {"name": "IS", "isDeprecated": False, "deprecationReason": None}, - {"name": "IN", "isDeprecated": False, "deprecationReason": None}, - {"name": "ID", "isDeprecated": False, "deprecationReason": None}, - {"name": "IR", "isDeprecated": False, "deprecationReason": None}, - {"name": "IQ", "isDeprecated": False, "deprecationReason": None}, - {"name": "IE", "isDeprecated": False, "deprecationReason": None}, - {"name": "IM", "isDeprecated": False, "deprecationReason": None}, - {"name": "IL", "isDeprecated": False, "deprecationReason": None}, - {"name": "IT", "isDeprecated": False, "deprecationReason": None}, - {"name": "JM", "isDeprecated": False, "deprecationReason": None}, - {"name": "JP", "isDeprecated": False, "deprecationReason": None}, - {"name": "JE", "isDeprecated": False, "deprecationReason": None}, - {"name": "JO", "isDeprecated": False, "deprecationReason": None}, - {"name": "KZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "KE", "isDeprecated": False, "deprecationReason": None}, - {"name": "KI", "isDeprecated": False, "deprecationReason": None}, - {"name": "KR", "isDeprecated": False, "deprecationReason": None}, - {"name": "KW", "isDeprecated": False, "deprecationReason": None}, - {"name": "KG", "isDeprecated": False, "deprecationReason": None}, - {"name": "LA", "isDeprecated": False, "deprecationReason": None}, - {"name": "LV", "isDeprecated": False, "deprecationReason": None}, - {"name": "LB", "isDeprecated": False, "deprecationReason": None}, - {"name": "LS", "isDeprecated": False, "deprecationReason": None}, - {"name": "LR", "isDeprecated": False, "deprecationReason": None}, - {"name": "LY", "isDeprecated": False, "deprecationReason": None}, - {"name": "LI", "isDeprecated": False, "deprecationReason": None}, - {"name": "LT", "isDeprecated": False, "deprecationReason": None}, - {"name": "LU", "isDeprecated": False, "deprecationReason": None}, - {"name": "MO", "isDeprecated": False, "deprecationReason": None}, - {"name": "MK", "isDeprecated": False, "deprecationReason": None}, - {"name": "MG", "isDeprecated": False, "deprecationReason": None}, - {"name": "MW", "isDeprecated": False, "deprecationReason": None}, - {"name": "MY", "isDeprecated": False, "deprecationReason": None}, - {"name": "MV", "isDeprecated": False, "deprecationReason": None}, - {"name": "ML", "isDeprecated": False, "deprecationReason": None}, - {"name": "MT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MH", "isDeprecated": False, "deprecationReason": None}, - {"name": "MQ", "isDeprecated": False, "deprecationReason": None}, - {"name": "MR", "isDeprecated": False, "deprecationReason": None}, - {"name": "MU", "isDeprecated": False, "deprecationReason": None}, - {"name": "YT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MX", "isDeprecated": False, "deprecationReason": None}, - {"name": "FM", "isDeprecated": False, "deprecationReason": None}, - {"name": "MD", "isDeprecated": False, "deprecationReason": None}, - {"name": "MC", "isDeprecated": False, "deprecationReason": None}, - {"name": "MN", "isDeprecated": False, "deprecationReason": None}, - {"name": "ME", "isDeprecated": False, "deprecationReason": None}, - {"name": "MS", "isDeprecated": False, "deprecationReason": None}, - {"name": "MA", "isDeprecated": False, "deprecationReason": None}, - {"name": "MZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "MM", "isDeprecated": False, "deprecationReason": None}, - {"name": "NA", "isDeprecated": False, "deprecationReason": None}, - {"name": "NR", "isDeprecated": False, "deprecationReason": None}, - {"name": "NP", "isDeprecated": False, "deprecationReason": None}, - {"name": "NL", "isDeprecated": False, "deprecationReason": None}, - {"name": "NC", "isDeprecated": False, "deprecationReason": None}, - {"name": "NZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "NI", "isDeprecated": False, "deprecationReason": None}, - {"name": "NE", "isDeprecated": False, "deprecationReason": None}, - {"name": "NG", "isDeprecated": False, "deprecationReason": None}, - {"name": "NU", "isDeprecated": False, "deprecationReason": None}, - {"name": "NF", "isDeprecated": False, "deprecationReason": None}, - {"name": "MP", "isDeprecated": False, "deprecationReason": None}, - {"name": "NO", "isDeprecated": False, "deprecationReason": None}, - {"name": "OM", "isDeprecated": False, "deprecationReason": None}, - {"name": "PK", "isDeprecated": False, "deprecationReason": None}, - {"name": "PW", "isDeprecated": False, "deprecationReason": None}, - {"name": "PS", "isDeprecated": False, "deprecationReason": None}, - {"name": "PA", "isDeprecated": False, "deprecationReason": None}, - {"name": "PG", "isDeprecated": False, "deprecationReason": None}, - {"name": "PY", "isDeprecated": False, "deprecationReason": None}, - {"name": "PE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PH", "isDeprecated": False, "deprecationReason": None}, - {"name": "PN", "isDeprecated": False, "deprecationReason": None}, - {"name": "PL", "isDeprecated": False, "deprecationReason": None}, - {"name": "PT", "isDeprecated": False, "deprecationReason": None}, - {"name": "PR", "isDeprecated": False, "deprecationReason": None}, - {"name": "QA", "isDeprecated": False, "deprecationReason": None}, - {"name": "RE", "isDeprecated": False, "deprecationReason": None}, - {"name": "RO", "isDeprecated": False, "deprecationReason": None}, - {"name": "RU", "isDeprecated": False, "deprecationReason": None}, - {"name": "RW", "isDeprecated": False, "deprecationReason": None}, - {"name": "BL", "isDeprecated": False, "deprecationReason": None}, - {"name": "SH", "isDeprecated": False, "deprecationReason": None}, - {"name": "KN", "isDeprecated": False, "deprecationReason": None}, - {"name": "LC", "isDeprecated": False, "deprecationReason": None}, - {"name": "MF", "isDeprecated": False, "deprecationReason": None}, - {"name": "PM", "isDeprecated": False, "deprecationReason": None}, - {"name": "VC", "isDeprecated": False, "deprecationReason": None}, - {"name": "WS", "isDeprecated": False, "deprecationReason": None}, - {"name": "SM", "isDeprecated": False, "deprecationReason": None}, - {"name": "ST", "isDeprecated": False, "deprecationReason": None}, - {"name": "SA", "isDeprecated": False, "deprecationReason": None}, - {"name": "SN", "isDeprecated": False, "deprecationReason": None}, - {"name": "RS", "isDeprecated": False, "deprecationReason": None}, - {"name": "SC", "isDeprecated": False, "deprecationReason": None}, - {"name": "SL", "isDeprecated": False, "deprecationReason": None}, - {"name": "SG", "isDeprecated": False, "deprecationReason": None}, - {"name": "SX", "isDeprecated": False, "deprecationReason": None}, - {"name": "SK", "isDeprecated": False, "deprecationReason": None}, - {"name": "SI", "isDeprecated": False, "deprecationReason": None}, - {"name": "SB", "isDeprecated": False, "deprecationReason": None}, - {"name": "SO", "isDeprecated": False, "deprecationReason": None}, - {"name": "ZA", "isDeprecated": False, "deprecationReason": None}, - {"name": "GS", "isDeprecated": False, "deprecationReason": None}, - {"name": "SS", "isDeprecated": False, "deprecationReason": None}, - {"name": "ES", "isDeprecated": False, "deprecationReason": None}, - {"name": "LK", "isDeprecated": False, "deprecationReason": None}, - {"name": "SD", "isDeprecated": False, "deprecationReason": None}, - {"name": "SR", "isDeprecated": False, "deprecationReason": None}, - {"name": "SJ", "isDeprecated": False, "deprecationReason": None}, - {"name": "SZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "SE", "isDeprecated": False, "deprecationReason": None}, - {"name": "CH", "isDeprecated": False, "deprecationReason": None}, - {"name": "TW", "isDeprecated": False, "deprecationReason": None}, - {"name": "TJ", "isDeprecated": False, "deprecationReason": None}, - {"name": "TZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "TH", "isDeprecated": False, "deprecationReason": None}, - {"name": "TL", "isDeprecated": False, "deprecationReason": None}, - {"name": "TG", "isDeprecated": False, "deprecationReason": None}, - {"name": "TK", "isDeprecated": False, "deprecationReason": None}, - {"name": "TO", "isDeprecated": False, "deprecationReason": None}, - {"name": "TT", "isDeprecated": False, "deprecationReason": None}, - {"name": "TN", "isDeprecated": False, "deprecationReason": None}, - {"name": "TR", "isDeprecated": False, "deprecationReason": None}, - {"name": "TM", "isDeprecated": False, "deprecationReason": None}, - {"name": "TC", "isDeprecated": False, "deprecationReason": None}, - {"name": "TV", "isDeprecated": False, "deprecationReason": None}, - {"name": "UG", "isDeprecated": False, "deprecationReason": None}, - {"name": "UA", "isDeprecated": False, "deprecationReason": None}, - {"name": "AE", "isDeprecated": False, "deprecationReason": None}, - {"name": "GB", "isDeprecated": False, "deprecationReason": None}, - {"name": "UM", "isDeprecated": False, "deprecationReason": None}, - {"name": "US", "isDeprecated": False, "deprecationReason": None}, - {"name": "UY", "isDeprecated": False, "deprecationReason": None}, - {"name": "UZ", "isDeprecated": False, "deprecationReason": None}, - {"name": "VU", "isDeprecated": False, "deprecationReason": None}, - {"name": "VA", "isDeprecated": False, "deprecationReason": None}, - {"name": "VE", "isDeprecated": False, "deprecationReason": None}, - {"name": "VN", "isDeprecated": False, "deprecationReason": None}, - {"name": "VG", "isDeprecated": False, "deprecationReason": None}, - {"name": "VI", "isDeprecated": False, "deprecationReason": None}, - {"name": "WF", "isDeprecated": False, "deprecationReason": None}, - {"name": "EH", "isDeprecated": False, "deprecationReason": None}, - {"name": "YE", "isDeprecated": False, "deprecationReason": None}, - {"name": "ZM", "isDeprecated": False, "deprecationReason": None}, - {"name": "ZW", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsGoal", - "description": "A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.", - "fields": [ - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "kind", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorsGoalKind", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "percentComplete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "targetValue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorsGoalKind", - "description": "The different kinds of goals a GitHub Sponsors member can have.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "TOTAL_SPONSORS_COUNT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MONTHLY_SPONSORSHIP_AMOUNT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsListing", - "description": "A GitHub Sponsors listing.", - "fields": [ - { - "name": "activeGoal", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsGoal", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "activeStripeConnectAccount", - "args": [], - "type": {"kind": "OBJECT", "name": "StripeConnectAccount", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "billingCountryOrRegion", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contactEmailAddress", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dashboardResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dashboardUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "featuredItems", - "args": [ - { - "name": "featureableTypes", - "description": "The types of featured items to return.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsListingFeaturedItemFeatureableType", - "ofType": None, - }, - }, - }, - "defaultValue": "[REPOSITORY, USER]", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorsListingFeaturedItem", - "ofType": None, - }, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fiscalHost", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDescription", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fullDescriptionHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPublic", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nextPayoutDate", - "args": [], - "type": {"kind": "SCALAR", "name": "Date", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "residenceCountryOrRegion", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "shortDescription", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "slug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tiers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for Sponsors tiers returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorsTierOrder", "ofType": None}, - "defaultValue": "{field: MONTHLY_PRICE_IN_CENTS, direction: ASC}", - }, - { - "name": "includeUnpublished", - "description": "Whether to include tiers that aren't published. Only admins of the Sponsors listing can see draft tiers. Only admins of the Sponsors listing and viewers who are currently sponsoring on a retired tier can see those retired tiers. Defaults to including only published tiers, which are visible to anyone who can see the GitHub Sponsors profile.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": {"kind": "OBJECT", "name": "SponsorsTierConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "SponsorsListingFeatureableItem", - "description": "A record that can be featured on a GitHub Sponsors profile.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "SponsorsListingFeaturedItem", - "description": "A record that is promoted on a GitHub Sponsors profile.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "featureable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "SponsorsListingFeatureableItem", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "position", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsListing", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorsListingFeaturedItemFeatureableType", - "description": "The different kinds of records that can be featured on a GitHub Sponsors profile page.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "REPOSITORY", "isDeprecated": False, "deprecationReason": None}, - {"name": "USER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsTier", - "description": "A GitHub Sponsors tier associated with a GitHub Sponsors listing.", - "fields": [ - { - "name": "adminInfo", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTierAdminInfo", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "closestLesserValueTier", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "descriptionHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCustomAmount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isOneTime", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "monthlyPriceInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "monthlyPriceInDollars", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsListing", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsTierAdminInfo", - "description": "SponsorsTier information only visible to users that can administer the associated Sponsors listing.", - "fields": [ - { - "name": "isDraft", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPublished", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isRetired", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorships", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "includePrivate", - "description": "Whether or not to return private sponsorships using this tier. Defaults to only returning public sponsorships on this tier.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsTierConnection", - "description": "The connection type for SponsorsTier.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsTierEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorsTierEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorsTierOrder", - "description": "Ordering options for Sponsors tiers connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorsTierOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorsTierOrderField", - "description": "Properties by which Sponsors tiers connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "MONTHLY_PRICE_IN_CENTS", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Sponsorship", - "description": "A sponsorship relationship between a sponsor and a maintainer", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isActive", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isOneTimePayment", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSponsorOptedIntoEmail", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "maintainer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "`Sponsorship.maintainer` will be removed. Use `Sponsorship.sponsorable` instead. Removal on 2020-04-01 UTC.", - }, - { - "name": "paymentSource", - "args": [], - "type": {"kind": "ENUM", "name": "SponsorshipPaymentSource", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "privacyLevel", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsor", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "`Sponsorship.sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead. Removal on 2020-10-01 UTC.", - }, - { - "name": "sponsorEntity", - "args": [], - "type": {"kind": "UNION", "name": "Sponsor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tier", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsTier", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tierSelectedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorshipConnection", - "description": "A list of sponsorships either from the subject or received by the subject.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalRecurringMonthlyPriceInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalRecurringMonthlyPriceInDollars", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorshipEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorshipNewsletter", - "description": "An update sent to sponsors of a user or organization on GitHub Sponsors.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPublished", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorshipNewsletterConnection", - "description": "The connection type for SponsorshipNewsletter.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletterEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletter", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SponsorshipNewsletterEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorshipNewsletter", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorshipNewsletterOrder", - "description": "Ordering options for sponsorship newsletter connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorshipNewsletterOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorshipNewsletterOrderField", - "description": "Properties by which sponsorship update connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SponsorshipOrder", - "description": "Ordering options for sponsorship connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SponsorshipOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorshipOrderField", - "description": "Properties by which sponsorship connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorshipPaymentSource", - "description": "How payment was made for funding a GitHub Sponsors sponsorship.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "GITHUB", "isDeprecated": False, "deprecationReason": None}, - {"name": "PATREON", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SponsorshipPrivacy", - "description": "The privacy of a sponsorship", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PUBLIC", "isDeprecated": False, "deprecationReason": None}, - {"name": "PRIVATE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SquashMergeCommitMessage", - "description": "The possible default commit messages for squash merges.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PR_BODY", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMIT_MESSAGES", "isDeprecated": False, "deprecationReason": None}, - {"name": "BLANK", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SquashMergeCommitTitle", - "description": "The possible default commit titles for squash merges.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "PR_TITLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "COMMIT_OR_PR_TITLE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SshSignature", - "description": "Represents an SSH signature on a Commit or Tag.", - "fields": [ - { - "name": "email", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isValid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "keyFingerprint", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "payload", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signature", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "wasSignedByGitHub", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "GitSignature", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "StarOrder", - "description": "Ways in which star connections can be ordered.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "StarOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "StarOrderField", - "description": "Properties by which star connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "STARRED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StargazerConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StargazerEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StargazerEdge", - "description": "Represents a user that's starred a repository.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "starredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Starrable", - "description": "Things that can be starred.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stargazerCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stargazers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StargazerConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasStarred", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Gist", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "Topic", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "StarredRepositoryConnection", - "description": "The connection type for Repository.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StarredRepositoryEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isOverLimit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StarredRepositoryEdge", - "description": "Represents a starred repository.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "starredAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "StartOrganizationMigrationInput", - "description": "Autogenerated input type of StartOrganizationMigration", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sourceOrgUrl", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "targetOrgName", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "targetEnterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "sourceAccessToken", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StartOrganizationMigrationPayload", - "description": "Autogenerated return type of StartOrganizationMigration", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "orgMigration", - "args": [], - "type": {"kind": "OBJECT", "name": "OrganizationMigration", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "StartRepositoryMigrationInput", - "description": "Autogenerated input type of StartRepositoryMigration", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sourceId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "sourceRepositoryUrl", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryName", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "continueOnError", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "gitArchiveUrl", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "metadataArchiveUrl", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "accessToken", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "githubPat", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "skipReleases", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "targetRepoVisibility", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "lockSource", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StartRepositoryMigrationPayload", - "description": "Autogenerated return type of StartRepositoryMigration", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryMigration", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryMigration", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Status", - "description": "Represents a commit status.", - "fields": [ - { - "name": "combinedContexts", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusCheckRollupContextConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "context", - "args": [ - { - "name": "name", - "description": "The context name.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contexts", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "StatusState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StatusCheckConfiguration", - "description": "Required status check", - "fields": [ - { - "name": "context", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "integrationId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusCheckConfigurationInput", - "description": "Required status check", - "fields": None, - "inputFields": [ - { - "name": "context", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "integrationId", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StatusCheckRollup", - "description": "Represents the rollup for both the check runs and status for a commit.", - "fields": [ - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contexts", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "StatusCheckRollupContextConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "StatusState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "StatusCheckRollupContext", - "description": "Types that can be inside a StatusCheckRollup context.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, - {"kind": "OBJECT", "name": "StatusContext", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "StatusCheckRollupContextConnection", - "description": "The connection type for StatusCheckRollupContext.", - "fields": [ - { - "name": "checkRunCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "checkRunCountsByState", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckRunStateCount", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StatusCheckRollupContextEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "StatusCheckRollupContext", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "statusContextCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "statusContextCountsByState", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StatusContextStateCount", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StatusCheckRollupContextEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "StatusCheckRollupContext", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StatusContext", - "description": "Represents an individual commit status context", - "fields": [ - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "40", - } - ], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commit", - "args": [], - "type": {"kind": "OBJECT", "name": "Commit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "context", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "creator", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isRequired", - "args": [ - { - "name": "pullRequestId", - "description": "The id of the pull request this is required for", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestNumber", - "description": "The number of the pull request this is required for", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "StatusState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "targetUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "RequirableByPullRequest", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StatusContextStateCount", - "description": "Represents a count of the state of a status context.", - "fields": [ - { - "name": "count", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "StatusState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "StatusState", - "description": "The possible commit status states.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "EXPECTED", "isDeprecated": False, "deprecationReason": None}, - {"name": "ERROR", "isDeprecated": False, "deprecationReason": None}, - {"name": "FAILURE", "isDeprecated": False, "deprecationReason": None}, - {"name": "PENDING", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUCCESS", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "String", - "description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "StripeConnectAccount", - "description": "A Stripe Connect account for receiving sponsorship funds from GitHub Sponsors.", - "fields": [ - { - "name": "accountId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "billingCountryOrRegion", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "countryOrRegion", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isActive", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsListing", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stripeDashboardUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "SubmitPullRequestReviewInput", - "description": "Autogenerated input type of SubmitPullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "event", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestReviewEvent", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SubmitPullRequestReviewPayload", - "description": "Autogenerated return type of SubmitPullRequestReview", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReview", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Submodule", - "description": "A pointer to a repository at a specific revision embedded inside another repository.", - "fields": [ - { - "name": "branch", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "gitUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nameRaw", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pathRaw", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subprojectCommitOid", - "args": [], - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SubmoduleConnection", - "description": "The connection type for Submodule.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SubmoduleEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Submodule", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SubmoduleEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Submodule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Subscribable", - "description": "Entities that can be subscribed to for web and email notifications.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSubscribe", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerSubscription", - "args": [], - "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Commit", "ofType": None}, - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "Team", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - ], - }, - { - "kind": "INTERFACE", - "name": "SubscribableThread", - "description": "Entities that can be subscribed to for web and email notifications.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerThreadSubscriptionFormAction", - "args": [], - "type": {"kind": "ENUM", "name": "ThreadSubscriptionFormAction", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerThreadSubscriptionStatus", - "args": [], - "type": {"kind": "ENUM", "name": "ThreadSubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [{"kind": "OBJECT", "name": "Issue", "ofType": None}], - }, - { - "kind": "OBJECT", - "name": "SubscribedEvent", - "description": "Represents a 'subscribed' event on a given `Subscribable`.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subscribable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "SubscriptionState", - "description": "The possible states of a subscription.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "UNSUBSCRIBED", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIBED", "isDeprecated": False, "deprecationReason": None}, - {"name": "IGNORED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "SuggestedReviewer", - "description": "A suggestion to review a pull request based on a user's commit history and review comments.", - "fields": [ - { - "name": "isAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCommenter", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Tag", - "description": "Represents a Git tag.", - "fields": [ - { - "name": "abbreviatedOid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tagger", - "args": [], - "type": {"kind": "OBJECT", "name": "GitActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "target", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TagNamePatternParameters", - "description": "Parameters to be used for the tag_name_pattern rule", - "fields": [ - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "negate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operator", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pattern", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "TagNamePatternParametersInput", - "description": "Parameters to be used for the tag_name_pattern rule", - "fields": None, - "inputFields": [ - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "negate", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "operator", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "pattern", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Team", - "description": "A team of users in an organization.", - "fields": [ - { - "name": "ancestors", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size in pixels of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "400", - } - ], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "childTeams", - "args": [ - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "TeamOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userLogins", - "description": "User logins to filter by", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "immediateOnly", - "description": "Whether to list immediate child teams or all descendant child teams.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "combinedSlug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [ - { - "name": "number", - "description": "The sequence number of the discussion to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isPinned", - "description": "If provided, filters discussions according to whether or not they are pinned.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "TeamDiscussionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamDiscussionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussionsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussionsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editTeamResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editTeamUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invitations", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "OrganizationInvitationConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "memberStatuses", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for user statuses returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "UserStatusOrder", "ofType": None}, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserStatusConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "members", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "The search string to look for.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "membership", - "description": "Filter by membership type", - "type": {"kind": "ENUM", "name": "TeamMembershipType", "ofType": None}, - "defaultValue": "ALL", - }, - { - "name": "role", - "description": "Filter by team member role", - "type": {"kind": "ENUM", "name": "TeamMemberRole", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "TeamMemberOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamMemberConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "membersUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "newTeamResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "newTeamUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "notificationSetting", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "TeamNotificationSetting", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeam", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "privacy", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "TeamPrivacy", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [ - { - "name": "number", - "description": "The Project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsV2", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, - "defaultValue": "{field: NUMBER, direction: DESC}", - }, - { - "name": "filterBy", - "description": "Filtering options for projects returned from this connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Filters", "ofType": None}, - "defaultValue": "{}", - }, - { - "name": "query", - "description": "The query to search projects by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositories", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "query", - "description": "The search string to look for. Repositories will be returned where the name contains your search string.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "TeamRepositoryOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamRepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoriesResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoriesUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewRequestDelegationAlgorithm", - "args": [], - "type": {"kind": "ENUM", "name": "TeamReviewAssignmentAlgorithm", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewRequestDelegationEnabled", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewRequestDelegationMemberCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reviewRequestDelegationNotifyTeam", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "slug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanAdminister", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSubscribe", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerSubscription", - "args": [], - "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "MemberStatusable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamAddMemberAuditEntry", - "description": "Audit log entry for a team.add_member event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isLdapMapped", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamAddRepositoryAuditEntry", - "description": "Audit log entry for a team.add_repository event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isLdapMapped", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "TeamAuditEntryData", - "description": "Metadata for an audit entry with action team.*", - "fields": [ - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "OrgRestoreMemberMembershipTeamAuditEntryData", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamAddRepositoryAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamChangeParentTeamAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveMemberAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "TeamRemoveRepositoryAuditEntry", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "TeamChangeParentTeamAuditEntry", - "description": "Audit log entry for a team.change_parent_team event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isLdapMapped", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeam", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeamName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeamNameWas", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeamResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeamUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeamWas", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeamWasResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "parentTeamWasUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamConnection", - "description": "The connection type for Team.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Team", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamDiscussion", - "description": "A team discussion.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyVersion", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "comments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamDiscussionCommentOrder", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "fromComment", - "description": "When provided, filters the connection such that results begin with the comment with this number.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamDiscussionCommentConnection", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "commentsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "commentsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPinned", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "isPrivate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "team", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Team", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "title", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanPin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSubscribe", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerSubscription", - "args": [], - "type": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionComment", - "description": "A comment on a team discussion.", - "fields": [ - { - "name": "author", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "authorAssociation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentAuthorAssociation", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "body", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyText", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bodyVersion", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdViaEmail", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "includesCreatedEdit", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastEditedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "publishedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactionGroups", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionGroup", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "reactions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "content", - "description": "Allows filtering Reactions by emoji.", - "type": {"kind": "ENUM", "name": "ReactionContent", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Allows specifying the order in which reactions are returned.", - "type": {"kind": "INPUT_OBJECT", "name": "ReactionOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ReactionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.", - }, - { - "name": "userContentEdits", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "UserContentEditConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanDelete", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReact", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerDidAuthor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Comment", "ofType": None}, - {"kind": "INTERFACE", "name": "Deletable", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Reactable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - {"kind": "INTERFACE", "name": "Updatable", "ofType": None}, - {"kind": "INTERFACE", "name": "UpdatableComment", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionCommentConnection", - "description": "The connection type for TeamDiscussionComment.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamDiscussionCommentEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionCommentEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamDiscussionCommentOrder", - "description": "Ways in which team discussion comment connections can be ordered.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "TeamDiscussionCommentOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamDiscussionCommentOrderField", - "description": "Properties by which team discussion comment connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "NUMBER", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionConnection", - "description": "The connection type for TeamDiscussion.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamDiscussionEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamDiscussionEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamDiscussionOrder", - "description": "Ways in which team discussion connections can be ordered.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "TeamDiscussionOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamDiscussionOrderField", - "description": "Properties by which team discussion connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamMemberConnection", - "description": "The connection type for User.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamMemberEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamMemberEdge", - "description": "Represents a user who is a member of a team.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "memberAccessResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "memberAccessUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "role", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "TeamMemberRole", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamMemberOrder", - "description": "Ordering options for team member connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "TeamMemberOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamMemberOrderField", - "description": "Properties by which team member connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "LOGIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamMemberRole", - "description": "The possible team member roles; either 'maintainer' or 'member'.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "MAINTAINER", "isDeprecated": False, "deprecationReason": None}, - {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamMembershipType", - "description": "Defines which types of team members are included in the returned list. Can be one of IMMEDIATE, CHILD_TEAM or ALL.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "IMMEDIATE", "isDeprecated": False, "deprecationReason": None}, - {"name": "CHILD_TEAM", "isDeprecated": False, "deprecationReason": None}, - {"name": "ALL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamNotificationSetting", - "description": "The possible team notification values.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NOTIFICATIONS_ENABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "NOTIFICATIONS_DISABLED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamOrder", - "description": "Ways in which team connections can be ordered.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "TeamOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamOrderField", - "description": "Properties by which team connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "NAME", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamPrivacy", - "description": "The possible team privacy values.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "SECRET", "isDeprecated": False, "deprecationReason": None}, - {"name": "VISIBLE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamRemoveMemberAuditEntry", - "description": "Audit log entry for a team.remove_member event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isLdapMapped", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamRemoveRepositoryAuditEntry", - "description": "Audit log entry for a team.remove_repository event.", - "fields": [ - { - "name": "action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actor", - "args": [], - "type": {"kind": "UNION", "name": "AuditEntryActor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorIp", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLocation", - "args": [], - "type": {"kind": "OBJECT", "name": "ActorLocation", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "actorUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "PreciseDateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isLdapMapped", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "operationType", - "args": [], - "type": {"kind": "ENUM", "name": "OperationType", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userLogin", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userResourcePath", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "userUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "AuditEntry", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "OrganizationAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryAuditEntryData", "ofType": None}, - {"kind": "INTERFACE", "name": "TeamAuditEntryData", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamRepositoryConnection", - "description": "The connection type for Repository.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TeamRepositoryEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TeamRepositoryEdge", - "description": "Represents a team repository.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "permission", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "TeamRepositoryOrder", - "description": "Ordering options for team repository connections", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "TeamRepositoryOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamRepositoryOrderField", - "description": "Properties by which team repository connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "PUSHED_AT", "isDeprecated": False, "deprecationReason": None}, - {"name": "NAME", "isDeprecated": False, "deprecationReason": None}, - {"name": "PERMISSION", "isDeprecated": False, "deprecationReason": None}, - {"name": "STARGAZERS", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamReviewAssignmentAlgorithm", - "description": "The possible team review assignment algorithms", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ROUND_ROBIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "LOAD_BALANCE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TeamRole", - "description": "The role of a user on a team.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ADMIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "MEMBER", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TextMatch", - "description": "A text match within a search result.", - "fields": [ - { - "name": "fragment", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "highlights", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TextMatchHighlight", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "property", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TextMatchHighlight", - "description": "Represents a single highlight in a search result match.", - "fields": [ - { - "name": "beginIndice", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "endIndice", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "text", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ThreadSubscriptionFormAction", - "description": "The possible states of a thread subscription form action", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIBE", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNSUBSCRIBE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "ThreadSubscriptionState", - "description": "The possible states of a subscription.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "UNAVAILABLE", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED", "isDeprecated": False, "deprecationReason": None}, - {"name": "IGNORING_LIST", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIBED_TO_THREAD_EVENTS", "isDeprecated": False, "deprecationReason": None}, - {"name": "IGNORING_THREAD", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIBED_TO_LIST", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIBED_TO_THREAD_TYPE", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIBED_TO_THREAD", "isDeprecated": False, "deprecationReason": None}, - {"name": "NONE", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Topic", - "description": "A topic aggregates entities that are related to a subject.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "relatedTopics", - "args": [ - { - "name": "first", - "description": "How many topics to return.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "3", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Topic", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositories", - "args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": "[OWNER, COLLABORATOR]", - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableOnly", - "description": "If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stargazerCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "stargazers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StargazerConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasStarred", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "Starrable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "TopicAuditEntryData", - "description": "Metadata for an audit entry with a topic.", - "fields": [ - { - "name": "topic", - "args": [], - "type": {"kind": "OBJECT", "name": "Topic", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topicName", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "RepoAddTopicAuditEntry", "ofType": None}, - {"kind": "OBJECT", "name": "RepoRemoveTopicAuditEntry", "ofType": None}, - ], - }, - { - "kind": "ENUM", - "name": "TopicSuggestionDeclineReason", - "description": "Reason that the suggested topic is declined.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - { - "name": "NOT_RELEVANT", - "isDeprecated": True, - }, - { - "name": "TOO_SPECIFIC", - "isDeprecated": True, - }, - { - "name": "PERSONAL_PREFERENCE", - "isDeprecated": True, - }, - { - "name": "TOO_GENERAL", - "isDeprecated": True, - }, - ], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "TrackedIssueStates", - "description": "The possible states of a tracked issue.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "OPEN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CLOSED", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "TransferEnterpriseOrganizationInput", - "description": "Autogenerated input type of TransferEnterpriseOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "destinationEnterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TransferEnterpriseOrganizationPayload", - "description": "Autogenerated return type of TransferEnterpriseOrganization", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "TransferIssueInput", - "description": "Autogenerated input type of TransferIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "createLabelsIfMissing", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TransferIssuePayload", - "description": "Autogenerated return type of TransferIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TransferredEvent", - "description": "Represents a 'transferred' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fromRepository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "Tree", - "description": "Represents a Git tree.", - "fields": [ - { - "name": "abbreviatedOid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "entries", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "TreeEntry", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "TreeEntry", - "description": "Represents a Git tree entry.", - "fields": [ - { - "name": "extension", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isGenerated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "language", - "args": [], - "type": {"kind": "OBJECT", "name": "Language", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lineCount", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mode", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nameRaw", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "object", - "args": [], - "type": {"kind": "INTERFACE", "name": "GitObject", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "oid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pathRaw", - "args": [], - "type": {"kind": "SCALAR", "name": "Base64String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "size", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "submodule", - "args": [], - "type": {"kind": "OBJECT", "name": "Submodule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "type", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "URI", - "description": "An RFC 3986, RFC 3987, and RFC 6570 (level 4) compliant URI string.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnarchiveProjectV2ItemInput", - "description": "Autogenerated input type of UnarchiveProjectV2Item", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "itemId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnarchiveProjectV2ItemPayload", - "description": "Autogenerated return type of UnarchiveProjectV2Item", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnarchiveRepositoryInput", - "description": "Autogenerated input type of UnarchiveRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnarchiveRepositoryPayload", - "description": "Autogenerated return type of UnarchiveRepository", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnassignedEvent", - "description": "Represents an 'unassigned' event on any assignable object.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assignable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Assignable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "assignee", - "args": [], - "type": {"kind": "UNION", "name": "Assignee", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": True, - "deprecationReason": "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.", - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnfollowOrganizationInput", - "description": "Autogenerated input type of UnfollowOrganization", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnfollowOrganizationPayload", - "description": "Autogenerated return type of UnfollowOrganization", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnfollowUserInput", - "description": "Autogenerated input type of UnfollowUser", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "userId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnfollowUserPayload", - "description": "Autogenerated return type of UnfollowUser", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "UniformResourceLocatable", - "description": "Represents a type that can be retrieved by a URL.", - "fields": [ - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Bot", "ofType": None}, - {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, - {"kind": "OBJECT", "name": "ClosedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Commit", "ofType": None}, - {"kind": "OBJECT", "name": "ConvertToDraftEvent", "ofType": None}, - {"kind": "OBJECT", "name": "CrossReferencedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Gist", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "Mannequin", "ofType": None}, - {"kind": "OBJECT", "name": "MergedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Milestone", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestCommit", "ofType": None}, - {"kind": "OBJECT", "name": "ReadyForReviewEvent", "ofType": None}, - {"kind": "OBJECT", "name": "Release", "ofType": None}, - {"kind": "OBJECT", "name": "Repository", "ofType": None}, - {"kind": "OBJECT", "name": "RepositoryTopic", "ofType": None}, - {"kind": "OBJECT", "name": "ReviewDismissedEvent", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "User", "ofType": None}, - {"kind": "OBJECT", "name": "Workflow", "ofType": None}, - {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, - {"kind": "OBJECT", "name": "WorkflowRunFile", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "UnknownSignature", - "description": "Represents an unknown signature on a Commit or Tag.", - "fields": [ - { - "name": "email", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isValid", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "payload", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signature", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "signer", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "GitSignatureState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "wasSignedByGitHub", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "GitSignature", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnlabeledEvent", - "description": "Represents an 'unlabeled' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "label", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Label", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "labelable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Labelable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnlinkProjectV2FromRepositoryInput", - "description": "Autogenerated input type of UnlinkProjectV2FromRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnlinkProjectV2FromRepositoryPayload", - "description": "Autogenerated return type of UnlinkProjectV2FromRepository", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnlinkProjectV2FromTeamInput", - "description": "Autogenerated input type of UnlinkProjectV2FromTeam", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "teamId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnlinkProjectV2FromTeamPayload", - "description": "Autogenerated return type of UnlinkProjectV2FromTeam", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnlinkRepositoryFromProjectInput", - "description": "Autogenerated input type of UnlinkRepositoryFromProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnlinkRepositoryFromProjectPayload", - "description": "Autogenerated return type of UnlinkRepositoryFromProject", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnlockLockableInput", - "description": "Autogenerated input type of UnlockLockable", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "lockableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnlockLockablePayload", - "description": "Autogenerated return type of UnlockLockable", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unlockedRecord", - "args": [], - "type": {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnlockedEvent", - "description": "Represents an 'unlocked' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lockable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Lockable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnmarkDiscussionCommentAsAnswerInput", - "description": "Autogenerated input type of UnmarkDiscussionCommentAsAnswer", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnmarkDiscussionCommentAsAnswerPayload", - "description": "Autogenerated return type of UnmarkDiscussionCommentAsAnswer", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnmarkFileAsViewedInput", - "description": "Autogenerated input type of UnmarkFileAsViewed", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnmarkFileAsViewedPayload", - "description": "Autogenerated return type of UnmarkFileAsViewed", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnmarkIssueAsDuplicateInput", - "description": "Autogenerated input type of UnmarkIssueAsDuplicate", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "duplicateId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "canonicalId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnmarkIssueAsDuplicatePayload", - "description": "Autogenerated return type of UnmarkIssueAsDuplicate", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "duplicate", - "args": [], - "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnmarkProjectV2AsTemplateInput", - "description": "Autogenerated input type of UnmarkProjectV2AsTemplate", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnmarkProjectV2AsTemplatePayload", - "description": "Autogenerated return type of UnmarkProjectV2AsTemplate", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnmarkedAsDuplicateEvent", - "description": "Represents an 'unmarked_as_duplicate' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "canonical", - "args": [], - "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "duplicate", - "args": [], - "type": {"kind": "UNION", "name": "IssueOrPullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCrossRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnminimizeCommentInput", - "description": "Autogenerated input type of UnminimizeComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "subjectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnminimizeCommentPayload", - "description": "Autogenerated return type of UnminimizeComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "unminimizedComment", - "args": [], - "type": {"kind": "INTERFACE", "name": "Minimizable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnpinIssueInput", - "description": "Autogenerated input type of UnpinIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "issueId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnpinIssuePayload", - "description": "Autogenerated return type of UnpinIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnpinnedEvent", - "description": "Represents an 'unpinned' event on a given issue or pull request.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnresolveReviewThreadInput", - "description": "Autogenerated input type of UnresolveReviewThread", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "threadId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnresolveReviewThreadPayload", - "description": "Autogenerated return type of UnresolveReviewThread", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "thread", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewThread", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsubscribeFromNotificationsInput", - "description": "Autogenerated input type of UnsubscribeFromNotifications", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ids", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnsubscribeFromNotificationsPayload", - "description": "Autogenerated return type of UnsubscribeFromNotifications", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "success", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UnsubscribedEvent", - "description": "Represents an 'unsubscribed' event on a given `Subscribable`.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subscribable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Updatable", - "description": "Entities that can be updated.", - "fields": [ - { - "name": "viewerCanUpdate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "GistComment", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "Project", "ofType": None}, - {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - ], - }, - { - "kind": "INTERFACE", - "name": "UpdatableComment", - "description": "Comments that can be updated.", - "fields": [ - { - "name": "viewerCannotUpdateReasons", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "CommentCannotUpdateReason", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "CommitComment", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - {"kind": "OBJECT", "name": "GistComment", "ofType": None}, - {"kind": "OBJECT", "name": "Issue", "ofType": None}, - {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateBranchProtectionRuleInput", - "description": "Autogenerated input type of UpdateBranchProtectionRule", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "branchProtectionRuleId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "pattern", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresApprovingReviews", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiredApprovingReviewCount", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresCommitSignatures", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresLinearHistory", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "blocksCreations", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "allowsForcePushes", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "allowsDeletions", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isAdminEnforced", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresStatusChecks", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresStrictStatusChecks", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiresCodeOwnerReviews", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "dismissesStaleReviews", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "restrictsReviewDismissals", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "reviewDismissalActorIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "bypassPullRequestActorIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "bypassForcePushActorIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "restrictsPushes", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pushActorIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "requiredStatusCheckContexts", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "requiredStatusChecks", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequiredStatusCheckInput", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "requiresDeployments", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requiredDeploymentEnvironments", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "requiresConversationResolution", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "requireLastPushApproval", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "lockBranch", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "lockAllowsFetchAndMerge", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateBranchProtectionRulePayload", - "description": "Autogenerated return type of UpdateBranchProtectionRule", - "fields": [ - { - "name": "branchProtectionRule", - "args": [], - "type": {"kind": "OBJECT", "name": "BranchProtectionRule", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCheckRunInput", - "description": "Autogenerated input type of UpdateCheckRun", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "checkRunId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "detailsUrl", - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "defaultValue": None, - }, - { - "name": "externalId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "status", - "type": {"kind": "ENUM", "name": "RequestableCheckStatusState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "startedAt", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "conclusion", - "type": {"kind": "ENUM", "name": "CheckConclusionState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "completedAt", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "output", - "type": {"kind": "INPUT_OBJECT", "name": "CheckRunOutput", "ofType": None}, - "defaultValue": None, - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "CheckRunAction", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateCheckRunPayload", - "description": "Autogenerated return type of UpdateCheckRun", - "fields": [ - { - "name": "checkRun", - "args": [], - "type": {"kind": "OBJECT", "name": "CheckRun", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCheckSuitePreferencesInput", - "description": "Autogenerated input type of UpdateCheckSuitePreferences", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "autoTriggerPreferences", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CheckSuiteAutoTriggerPreference", - "ofType": None, - }, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateCheckSuitePreferencesPayload", - "description": "Autogenerated return type of UpdateCheckSuitePreferences", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateDiscussionCommentInput", - "description": "Autogenerated input type of UpdateDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "commentId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateDiscussionCommentPayload", - "description": "Autogenerated return type of UpdateDiscussionComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "comment", - "args": [], - "type": {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateDiscussionInput", - "description": "Autogenerated input type of UpdateDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "discussionId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "categoryId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateDiscussionPayload", - "description": "Autogenerated return type of UpdateDiscussion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "discussion", - "args": [], - "type": {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseAdministratorRoleInput", - "description": "Autogenerated input type of UpdateEnterpriseAdministratorRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "login", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "role", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "EnterpriseAdministratorRole", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseAdministratorRolePayload", - "description": "Autogenerated return type of UpdateEnterpriseAdministratorRole", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "policyValue", - "type": { - "kind": "ENUM", - "name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue", - "ofType": None, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseDefaultRepositoryPermissionSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseDefaultRepositoryPermissionSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseDefaultRepositoryPermissionSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "ENUM", - "name": "EnterpriseMembersCanCreateRepositoriesSettingValue", - "ofType": None, - }, - "defaultValue": None, - }, - { - "name": "membersCanCreateRepositoriesPolicyEnabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "membersCanCreatePublicRepositories", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "membersCanCreatePrivateRepositories", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "membersCanCreateInternalRepositories", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanCreateRepositoriesSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteIssuesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanDeleteIssuesSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanMakePurchasesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseMembersCanMakePurchasesSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanMakePurchasesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanMakePurchasesSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseOrganizationProjectsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseOrganizationProjectsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseOrganizationProjectsSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseOwnerOrganizationRoleInput", - "description": "Autogenerated input type of UpdateEnterpriseOwnerOrganizationRole", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "organizationRole", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RoleInOrganization", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseOwnerOrganizationRolePayload", - "description": "Autogenerated return type of UpdateEnterpriseOwnerOrganizationRole", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseProfileInput", - "description": "Autogenerated input type of UpdateEnterpriseProfile", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "description", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "websiteUrl", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "location", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseProfilePayload", - "description": "Autogenerated return type of UpdateEnterpriseProfile", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseRepositoryProjectsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseRepositoryProjectsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseRepositoryProjectsSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseTeamDiscussionsSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "EnterpriseEnabledDisabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseTeamDiscussionsSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseTeamDiscussionsSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput", - "description": "Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enterpriseId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "EnterpriseEnabledSettingValue", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload", - "description": "Autogenerated return type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprise", - "args": [], - "type": {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateEnvironmentInput", - "description": "Autogenerated input type of UpdateEnvironment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "environmentId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "waitTimer", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "reviewers", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "preventSelfReview", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateEnvironmentPayload", - "description": "Autogenerated return type of UpdateEnvironment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "environment", - "args": [], - "type": {"kind": "OBJECT", "name": "Environment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListEnabledSettingInput", - "description": "Autogenerated input type of UpdateIpAllowListEnabledSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IpAllowListEnabledSettingValue", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateIpAllowListEnabledSettingPayload", - "description": "Autogenerated return type of UpdateIpAllowListEnabledSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": {"kind": "UNION", "name": "IpAllowListOwner", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListEntryInput", - "description": "Autogenerated input type of UpdateIpAllowListEntry", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ipAllowListEntryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "allowListValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isActive", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateIpAllowListEntryPayload", - "description": "Autogenerated return type of UpdateIpAllowListEntry", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ipAllowListEntry", - "args": [], - "type": {"kind": "OBJECT", "name": "IpAllowListEntry", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIpAllowListForInstalledAppsEnabledSettingInput", - "description": "Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "IpAllowListForInstalledAppsEnabledSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateIpAllowListForInstalledAppsEnabledSettingPayload", - "description": "Autogenerated return type of UpdateIpAllowListForInstalledAppsEnabledSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": {"kind": "UNION", "name": "IpAllowListOwner", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIssueCommentInput", - "description": "Autogenerated input type of UpdateIssueComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateIssueCommentPayload", - "description": "Autogenerated return type of UpdateIssueComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issueComment", - "args": [], - "type": {"kind": "OBJECT", "name": "IssueComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateIssueInput", - "description": "Autogenerated input type of UpdateIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "assigneeIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "milestoneId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labelIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "state", - "type": {"kind": "ENUM", "name": "IssueState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateIssuePayload", - "description": "Autogenerated return type of UpdateIssue", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issue", - "args": [], - "type": {"kind": "OBJECT", "name": "Issue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateLabelInput", - "description": "Autogenerated input type of UpdateLabel", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "color", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "description", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateLabelPayload", - "description": "Autogenerated return type of UpdateLabel", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "label", - "args": [], - "type": {"kind": "OBJECT", "name": "Label", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateNotificationRestrictionSettingInput", - "description": "Autogenerated input type of UpdateNotificationRestrictionSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownerId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "settingValue", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "NotificationRestrictionSettingValue", - "ofType": None, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateNotificationRestrictionSettingPayload", - "description": "Autogenerated return type of UpdateNotificationRestrictionSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": {"kind": "UNION", "name": "VerifiableDomainOwner", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", - "description": "Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "forkingEnabled", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload", - "description": "Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateOrganizationWebCommitSignoffSettingInput", - "description": "Autogenerated input type of UpdateOrganizationWebCommitSignoffSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "organizationId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "webCommitSignoffRequired", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateOrganizationWebCommitSignoffSettingPayload", - "description": "Autogenerated return type of UpdateOrganizationWebCommitSignoffSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateParameters", - "description": "Only allow users with bypass permission to update matching refs.", - "fields": [ - { - "name": "updateAllowsFetchAndMerge", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateParametersInput", - "description": "Only allow users with bypass permission to update matching refs.", - "fields": None, - "inputFields": [ - { - "name": "updateAllowsFetchAndMerge", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePatreonSponsorabilityInput", - "description": "Autogenerated input type of UpdatePatreonSponsorability", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enablePatreonSponsorships", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdatePatreonSponsorabilityPayload", - "description": "Autogenerated return type of UpdatePatreonSponsorability", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsListing", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectCardInput", - "description": "Autogenerated input type of UpdateProjectCard", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectCardId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "isArchived", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "note", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateProjectCardPayload", - "description": "Autogenerated return type of UpdateProjectCard", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectCard", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectCard", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectColumnInput", - "description": "Autogenerated input type of UpdateProjectColumn", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectColumnId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateProjectColumnPayload", - "description": "Autogenerated return type of UpdateProjectColumn", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectColumn", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectColumn", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectInput", - "description": "Autogenerated input type of UpdateProject", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "state", - "type": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "public", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateProjectPayload", - "description": "Autogenerated return type of UpdateProject", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2CollaboratorsInput", - "description": "Autogenerated input type of UpdateProjectV2Collaborators", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "collaborators", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectV2Collaborator", - "ofType": None, - }, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2CollaboratorsPayload", - "description": "Autogenerated return type of UpdateProjectV2Collaborators", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "collaborators", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2ActorConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2DraftIssueInput", - "description": "Autogenerated input type of UpdateProjectV2DraftIssue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "draftIssueId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "assigneeIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2DraftIssuePayload", - "description": "Autogenerated return type of UpdateProjectV2DraftIssue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "draftIssue", - "args": [], - "type": {"kind": "OBJECT", "name": "DraftIssue", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2Input", - "description": "Autogenerated input type of UpdateProjectV2", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "shortDescription", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "readme", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "closed", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "public", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2ItemFieldValueInput", - "description": "Autogenerated input type of UpdateProjectV2ItemFieldValue", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "itemId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "fieldId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "value", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "ProjectV2FieldValue", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2ItemFieldValuePayload", - "description": "Autogenerated return type of UpdateProjectV2ItemFieldValue", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2Item", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2Item", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateProjectV2ItemPositionInput", - "description": "Autogenerated input type of UpdateProjectV2ItemPosition", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "projectId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "itemId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "afterId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2ItemPositionPayload", - "description": "Autogenerated return type of UpdateProjectV2ItemPosition", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "items", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": {"kind": "OBJECT", "name": "ProjectV2ItemConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateProjectV2Payload", - "description": "Autogenerated return type of UpdateProjectV2", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestBranchInput", - "description": "Autogenerated input type of UpdatePullRequestBranch", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "expectedHeadOid", - "type": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "updateMethod", - "type": {"kind": "ENUM", "name": "PullRequestBranchUpdateMethod", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdatePullRequestBranchPayload", - "description": "Autogenerated return type of UpdatePullRequestBranch", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestInput", - "description": "Autogenerated input type of UpdatePullRequest", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "baseRefName", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "state", - "type": {"kind": "ENUM", "name": "PullRequestUpdateState", "ofType": None}, - "defaultValue": None, - }, - { - "name": "maintainerCanModify", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "assigneeIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "milestoneId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labelIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "projectIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdatePullRequestPayload", - "description": "Autogenerated return type of UpdatePullRequest", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequest", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequest", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestReviewCommentInput", - "description": "Autogenerated input type of UpdatePullRequestReviewComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewCommentId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdatePullRequestReviewCommentPayload", - "description": "Autogenerated return type of UpdatePullRequestReviewComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReviewComment", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReviewComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdatePullRequestReviewInput", - "description": "Autogenerated input type of UpdatePullRequestReview", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pullRequestReviewId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdatePullRequestReviewPayload", - "description": "Autogenerated return type of UpdatePullRequestReview", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequestReview", - "args": [], - "type": {"kind": "OBJECT", "name": "PullRequestReview", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRefInput", - "description": "Autogenerated input type of UpdateRef", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "refId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "oid", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "GitObjectID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "force", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateRefPayload", - "description": "Autogenerated return type of UpdateRef", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "OBJECT", "name": "Ref", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRefsInput", - "description": "Autogenerated input type of UpdateRefs", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "refUpdates", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "RefUpdate", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateRefsPayload", - "description": "Autogenerated return type of UpdateRefs", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryInput", - "description": "Autogenerated input type of UpdateRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "description", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "template", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "homepageUrl", - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasWikiEnabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasIssuesEnabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasProjectsEnabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasDiscussionsEnabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasSponsorshipsEnabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateRepositoryPayload", - "description": "Autogenerated return type of UpdateRepository", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryRulesetInput", - "description": "Autogenerated input type of UpdateRepositoryRuleset", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryRulesetId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "target", - "type": {"kind": "ENUM", "name": "RepositoryRulesetTarget", "ofType": None}, - "defaultValue": None, - }, - { - "name": "rules", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "RepositoryRuleInput", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "conditions", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryRuleConditionsInput", "ofType": None}, - "defaultValue": None, - }, - { - "name": "enforcement", - "type": {"kind": "ENUM", "name": "RuleEnforcement", "ofType": None}, - "defaultValue": None, - }, - { - "name": "bypassActors", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RepositoryRulesetBypassActorInput", - "ofType": None, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateRepositoryRulesetPayload", - "description": "Autogenerated return type of UpdateRepositoryRuleset", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ruleset", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryRuleset", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateRepositoryWebCommitSignoffSettingInput", - "description": "Autogenerated input type of UpdateRepositoryWebCommitSignoffSetting", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "webCommitSignoffRequired", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateRepositoryWebCommitSignoffSettingPayload", - "description": "Autogenerated return type of UpdateRepositoryWebCommitSignoffSetting", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateSponsorshipPreferencesInput", - "description": "Autogenerated input type of UpdateSponsorshipPreferences", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableId", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogin", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "receiveEmails", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "privacyLevel", - "type": {"kind": "ENUM", "name": "SponsorshipPrivacy", "ofType": None}, - "defaultValue": "PUBLIC", - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateSponsorshipPreferencesPayload", - "description": "Autogenerated return type of UpdateSponsorshipPreferences", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorship", - "args": [], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateSubscriptionInput", - "description": "Autogenerated input type of UpdateSubscription", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "subscribableId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "state", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "SubscriptionState", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateSubscriptionPayload", - "description": "Autogenerated return type of UpdateSubscription", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subscribable", - "args": [], - "type": {"kind": "INTERFACE", "name": "Subscribable", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamDiscussionCommentInput", - "description": "Autogenerated input type of UpdateTeamDiscussionComment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "body", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "bodyVersion", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateTeamDiscussionCommentPayload", - "description": "Autogenerated return type of UpdateTeamDiscussionComment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamDiscussionComment", - "args": [], - "type": {"kind": "OBJECT", "name": "TeamDiscussionComment", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamDiscussionInput", - "description": "Autogenerated input type of UpdateTeamDiscussion", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "title", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "body", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "bodyVersion", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "pinned", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateTeamDiscussionPayload", - "description": "Autogenerated return type of UpdateTeamDiscussion", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teamDiscussion", - "args": [], - "type": {"kind": "OBJECT", "name": "TeamDiscussion", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamReviewAssignmentInput", - "description": "Autogenerated input type of UpdateTeamReviewAssignment", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "enabled", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "algorithm", - "type": {"kind": "ENUM", "name": "TeamReviewAssignmentAlgorithm", "ofType": None}, - "defaultValue": "ROUND_ROBIN", - }, - { - "name": "teamMemberCount", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": "1", - }, - { - "name": "notifyTeam", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "removeTeamRequest", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "includeChildTeamMembers", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "countMembersAlreadyRequested", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - { - "name": "excludedTeamMemberIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateTeamReviewAssignmentPayload", - "description": "Autogenerated return type of UpdateTeamReviewAssignment", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "team", - "args": [], - "type": {"kind": "OBJECT", "name": "Team", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTeamsRepositoryInput", - "description": "Autogenerated input type of UpdateTeamsRepository", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "teamIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "permission", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryPermission", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateTeamsRepositoryPayload", - "description": "Autogenerated return type of UpdateTeamsRepository", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "teams", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Team", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTopicsInput", - "description": "Autogenerated input type of UpdateTopics", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "topicNames", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateTopicsPayload", - "description": "Autogenerated return type of UpdateTopics", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "invalidTopicNames", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateUserListInput", - "description": "Autogenerated input type of UpdateUserList", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "listId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "name", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "description", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isPrivate", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateUserListPayload", - "description": "Autogenerated return type of UpdateUserList", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "list", - "args": [], - "type": {"kind": "OBJECT", "name": "UserList", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateUserListsForItemInput", - "description": "Autogenerated input type of UpdateUserListsForItem", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "itemId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "listIds", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - }, - "defaultValue": None, - }, - { - "name": "suggestedListIds", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UpdateUserListsForItemPayload", - "description": "Autogenerated return type of UpdateUserListsForItem", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "item", - "args": [], - "type": {"kind": "UNION", "name": "UserListItems", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lists", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserList", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "User", - "description": "A user is an individual's account on GitHub that owns repositories and can make new content.", - "fields": [ - { - "name": "anyPinnableItems", - "args": [ - { - "name": "type", - "description": "Filter to only a particular kind of pinnable item.", - "type": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "avatarUrl", - "args": [ - { - "name": "size", - "description": "The size of the resulting square image.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bio", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "bioHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "canReceiveOrganizationEmailsWhenNotificationsRestricted", - "args": [ - { - "name": "login", - "description": "The login of the organization to check.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "commitComments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CommitCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "company", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "companyHTML", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "contributionsCollection", - "args": [ - { - "name": "organizationID", - "description": "The ID of the organization used to filter contributions.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "from", - "description": "Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "to", - "description": "Only contributions made before and up to (including) this time will be counted. If omitted, defaults to the current time or one year from the provided from argument.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ContributionsCollection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "email", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enterprises", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the User's enterprises.", - "type": {"kind": "INPUT_OBJECT", "name": "EnterpriseOrder", "ofType": None}, - "defaultValue": "{field: NAME, direction: ASC}", - }, - { - "name": "membershipType", - "description": "Filter enterprises returned based on the user's membership type.", - "type": {"kind": "ENUM", "name": "EnterpriseMembershipType", "ofType": None}, - "defaultValue": "ALL", - }, - ], - "type": {"kind": "OBJECT", "name": "EnterpriseConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "estimatedNextSponsorsPayoutInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "followers", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "FollowerConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "following", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "FollowingConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "gist", - "args": [ - { - "name": "name", - "description": "The gist name to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Gist", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "gistComments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GistCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "gists", - "args": [ - { - "name": "privacy", - "description": "Filters Gists according to privacy.", - "type": {"kind": "ENUM", "name": "GistPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for gists returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "GistOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "GistConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasSponsorsListing", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hovercard", - "args": [ - { - "name": "primarySubjectId", - "description": "The ID of the subject to get the hovercard in the context of", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Hovercard", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "interactionAbility", - "args": [], - "type": {"kind": "OBJECT", "name": "RepositoryInteractionAbility", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isBountyHunter", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isCampusExpert", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDeveloperProgramMember", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isEmployee", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isFollowingViewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isGitHubStar", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isHireable", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSiteAdmin", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSponsoredBy", - "args": [ - { - "name": "accountLogin", - "description": "The target account's login.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isSponsoringViewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isViewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issueComments", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for issue comments returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueCommentOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "issues", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for issues returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the issues by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "IssueState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "filterBy", - "description": "Filtering options for issues returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueFilters", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "IssueConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "itemShowcase", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProfileItemShowcase", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lifetimeReceivedSponsorshipValues", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for results returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorAndLifetimeValueOrder", - "ofType": None, - }, - "defaultValue": "{field: SPONSOR_LOGIN, direction: ASC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "OBJECT", - "name": "SponsorAndLifetimeValueConnection", - "ofType": None, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lists", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserListConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "location", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "login", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "monthlyEstimatedSponsorsIncomeInCents", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [ - { - "name": "login", - "description": "The login of the organization to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizationVerifiedDomainEmails", - "args": [ - { - "name": "login", - "description": "The login of the organization to match verified domains from.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organizations", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for the User's organizations.", - "type": {"kind": "INPUT_OBJECT", "name": "OrganizationOrder", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "OrganizationConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "packages", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "names", - "description": "Find packages by their names.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "repositoryId", - "description": "Find packages in a repository by ID.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "packageType", - "description": "Filter registry package by type.", - "type": {"kind": "ENUM", "name": "PackageType", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering of the returned packages.", - "type": {"kind": "INPUT_OBJECT", "name": "PackageOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PackageConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnableItems", - "args": [ - { - "name": "types", - "description": "Filter the types of pinnable items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedItems", - "args": [ - { - "name": "types", - "description": "Filter the types of pinned items that are returned.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PinnableItemType", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PinnableItemConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pinnedItemsRemaining", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "project", - "args": [ - { - "name": "number", - "description": "The project number to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "Project", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectV2", - "args": [ - { - "name": "number", - "description": "The project number.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - } - ], - "type": {"kind": "OBJECT", "name": "ProjectV2", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projects", - "args": [ - { - "name": "orderBy", - "description": "Ordering options for projects returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "search", - "description": "Query to search projects by, currently only searching by name.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "states", - "description": "A list of states to filter the projects by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "ProjectState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsResourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "projectsV2", - "args": [ - { - "name": "query", - "description": "A project to search for under the the owner.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "How to order the returned projects.", - "type": {"kind": "INPUT_OBJECT", "name": "ProjectV2Order", "ofType": None}, - "defaultValue": "{field: NUMBER, direction: DESC}", - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pronouns", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "publicKeys", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PublicKeyConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pullRequests", - "args": [ - { - "name": "states", - "description": "A list of states to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "PullRequestState", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "labels", - "description": "A list of label names to filter the pull requests by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "headRefName", - "description": "The head ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "baseRefName", - "description": "The base ref name to filter the pull requests by.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for pull requests returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "IssueOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PullRequestConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "recentProjects", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "ProjectV2Connection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositories", - "args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "affiliations", - "description": "Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": "[OWNER, COLLABORATOR]", - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isArchived", - "description": "If non-null, filters repositories according to whether they are archived and not maintained", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isFork", - "description": "If non-null, filters repositories according to whether they are forks of another repository", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoriesContributedTo", - "args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy", - "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasIssues", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "includeUserRepositories", - "description": "If true, include user repositories", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "contributionTypes", - "description": "If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY]", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "RepositoryContributionType", - "ofType": None, - }, - }, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repository", - "args": [ - { - "name": "name", - "description": "Name of Repository to find.", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "followRenames", - "description": "Follow repository renames. If disabled, a repository referenced by its old name will return an error.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": {"kind": "OBJECT", "name": "Repository", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryDiscussionComments", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "description": "Filter discussion comments to only those in a specific repository.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "onlyAnswers", - "description": "Filter discussion comments to only those that were marked as the answer", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionCommentConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryDiscussions", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for discussions returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "DiscussionOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - { - "name": "repositoryId", - "description": "Filter discussions to only those in a specific repository.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "answered", - "description": "Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "null", - }, - { - "name": "states", - "description": "A list of states to filter the discussions by.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "DiscussionState", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DiscussionConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "savedReplies", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "The field to order saved replies by.", - "type": {"kind": "INPUT_OBJECT", "name": "SavedReplyOrder", "ofType": None}, - "defaultValue": "{field: UPDATED_AT, direction: DESC}", - }, - ], - "type": {"kind": "OBJECT", "name": "SavedReplyConnection", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "socialAccounts", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SocialAccountConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsoring", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the users and organizations returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, - "defaultValue": "{field: RELEVANCE, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsors", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "tierId", - "description": "If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.", - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsors returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorOrder", "ofType": None}, - "defaultValue": "{field: RELEVANCE, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsActivities", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "period", - "description": "Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if `since` or `until` is given.", - "type": {"kind": "ENUM", "name": "SponsorsActivityPeriod", "ofType": None}, - "defaultValue": "MONTH", - }, - { - "name": "since", - "description": "Filter activities to those that occurred on or after this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "until", - "description": "Filter activities to those that occurred before this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for activity returned from the connection.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorsActivityOrder", "ofType": None}, - "defaultValue": "{field: TIMESTAMP, direction: DESC}", - }, - { - "name": "actions", - "description": "Filter activities to only the specified actions.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "ENUM", - "name": "SponsorsActivityAction", - "ofType": None, - }, - }, - }, - "defaultValue": "[]", - }, - { - "name": "includeAsSponsor", - "description": "Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "includePrivate", - "description": "Whether or not to include private activities in the result set. Defaults to including public and private activities.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorsActivityConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorsListing", - "args": [], - "type": {"kind": "OBJECT", "name": "SponsorsListing", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipForViewerAsSponsor", - "args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - } - ], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipForViewerAsSponsorable", - "args": [ - { - "name": "activeOnly", - "description": "Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - } - ], - "type": {"kind": "OBJECT", "name": "Sponsorship", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipNewsletters", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorship updates returned from the connection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SponsorshipNewsletterOrder", - "ofType": None, - }, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipNewsletterConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipsAsMaintainer", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "includePrivate", - "description": "Whether or not to include private sponsorships in the result set", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sponsorshipsAsSponsor", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.", - "type": {"kind": "INPUT_OBJECT", "name": "SponsorshipOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "maintainerLogins", - "description": "Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - }, - { - "name": "activeOnly", - "description": "Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "true", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "SponsorshipConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "starredRepositories", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "ownedByViewer", - "description": "Filters starred repositories to only return repositories owned by the viewer.", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Order for connection", - "type": {"kind": "INPUT_OBJECT", "name": "StarOrder", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "StarredRepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "status", - "args": [], - "type": {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "suggestedListNames", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserListSuggestion", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "topRepositories", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "since", - "description": "How far back in time to fetch contributed repositories", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalSponsorshipAmountAsSponsorInCents", - "args": [ - { - "name": "since", - "description": "Filter payments to those that occurred on or after this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "until", - "description": "Filter payments to those that occurred before this time.", - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "defaultValue": None, - }, - { - "name": "sponsorableLogins", - "description": "Filter payments to those made to the users or organizations with the specified usernames.", - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": "[]", - }, - ], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "twitterUsername", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanChangePinnedItems", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanCreateProjects", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanFollow", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanSponsor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerIsFollowing", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerIsSponsoring", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "watching", - "args": [ - { - "name": "privacy", - "description": "If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.", - "type": {"kind": "ENUM", "name": "RepositoryPrivacy", "ofType": None}, - "defaultValue": None, - }, - { - "name": "visibility", - "description": "If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.", - "type": {"kind": "ENUM", "name": "RepositoryVisibility", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for repositories returned from the connection", - "type": {"kind": "INPUT_OBJECT", "name": "RepositoryOrder", "ofType": None}, - "defaultValue": None, - }, - { - "name": "affiliations", - "description": "Affiliation options for repositories returned from the connection. If none specified, the results will include repositories for which the current viewer is an owner or collaborator, or member.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ownerAffiliations", - "description": "Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.", - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "ENUM", "name": "RepositoryAffiliation", "ofType": None}, - }, - "defaultValue": "[OWNER, COLLABORATOR]", - }, - { - "name": "isLocked", - "description": "If non-null, filters repositories according to whether they have been locked", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "hasIssuesEnabled", - "description": "If non-null, filters repositories according to whether they have issues enabled", - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": None, - }, - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "RepositoryConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "websiteUrl", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "PackageOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProfileOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2Owner", "ofType": None}, - {"kind": "INTERFACE", "name": "ProjectV2Recent", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryDiscussionAuthor", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryDiscussionCommentAuthor", "ofType": None}, - {"kind": "INTERFACE", "name": "RepositoryOwner", "ofType": None}, - {"kind": "INTERFACE", "name": "Sponsorable", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "UserBlockDuration", - "description": "The possible durations that a user can be blocked for.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ONE_DAY", "isDeprecated": False, "deprecationReason": None}, - {"name": "THREE_DAYS", "isDeprecated": False, "deprecationReason": None}, - {"name": "ONE_WEEK", "isDeprecated": False, "deprecationReason": None}, - {"name": "ONE_MONTH", "isDeprecated": False, "deprecationReason": None}, - {"name": "PERMANENT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserBlockedEvent", - "description": "Represents a 'user_blocked' event on a given user.", - "fields": [ - { - "name": "actor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "blockDuration", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "UserBlockDuration", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subject", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserConnection", - "description": "A list of users.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserContentEdit", - "description": "An edit on user content", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletedAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deletedBy", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "diff", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "editor", - "args": [], - "type": {"kind": "INTERFACE", "name": "Actor", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserContentEditConnection", - "description": "A list of edits to content.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserContentEditEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserContentEdit", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserContentEditEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "UserContentEdit", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserEdge", - "description": "Represents a user.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "User", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserEmailMetadata", - "description": "Email attributes from External Identity", - "fields": [ - { - "name": "primary", - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "type", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "value", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserList", - "description": "A user-curated list of repositories", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isPrivate", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "items", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserListItemsConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "lastAddedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "slug", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserListConnection", - "description": "The connection type for UserList.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserListEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserList", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserListEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "UserList", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "UserListItems", - "description": "Types that can be added to a user list.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [{"kind": "OBJECT", "name": "Repository", "ofType": None}], - }, - { - "kind": "OBJECT", - "name": "UserListItemsConnection", - "description": "The connection type for UserListItems.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserListItemsEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "UNION", "name": "UserListItems", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserListItemsEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "UNION", "name": "UserListItems", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserListSuggestion", - "description": "Represents a suggested user list.", - "fields": [ - { - "name": "id", - "args": [], - "type": {"kind": "SCALAR", "name": "ID", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserStatus", - "description": "The user's description of what they're currently doing.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "emoji", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "emojiHTML", - "args": [], - "type": {"kind": "SCALAR", "name": "HTML", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "expiresAt", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "indicatesLimitedAvailability", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "message", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "organization", - "args": [], - "type": {"kind": "OBJECT", "name": "Organization", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "user", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserStatusConnection", - "description": "The connection type for UserStatus.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserStatusEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "UserStatusEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "UserStatus", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "UserStatusOrder", - "description": "Ordering options for user status connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "UserStatusOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "UserStatusOrderField", - "description": "Properties by which user status connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "UPDATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "VerifiableDomain", - "description": "A domain that can be verified or approved for an organization or an enterprise.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "dnsHostName", - "args": [], - "type": {"kind": "SCALAR", "name": "URI", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "domain", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasFoundHostName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "hasFoundVerificationToken", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isApproved", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isRequiredForPolicyEnforcement", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isVerified", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "owner", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "UNION", "name": "VerifiableDomainOwner", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "punycodeEncodedDomain", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "tokenExpirationTime", - "args": [], - "type": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "verificationToken", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "Node", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "VerifiableDomainConnection", - "description": "The connection type for VerifiableDomain.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "VerifiableDomainEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "VerifiableDomainEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "VerifiableDomainOrder", - "description": "Ordering options for verifiable domain connections.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "VerifiableDomainOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "VerifiableDomainOrderField", - "description": "Properties by which verifiable domain connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "DOMAIN", "isDeprecated": False, "deprecationReason": None}, - {"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "UNION", - "name": "VerifiableDomainOwner", - "description": "Types that can own a verifiable domain.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Enterprise", "ofType": None}, - {"kind": "OBJECT", "name": "Organization", "ofType": None}, - ], - }, - { - "kind": "INPUT_OBJECT", - "name": "VerifyVerifiableDomainInput", - "description": "Autogenerated input type of VerifyVerifiableDomain", - "fields": None, - "inputFields": [ - { - "name": "clientMutationId", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "id", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "VerifyVerifiableDomainPayload", - "description": "Autogenerated return type of VerifyVerifiableDomain", - "fields": [ - { - "name": "clientMutationId", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "domain", - "args": [], - "type": {"kind": "OBJECT", "name": "VerifiableDomain", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "ViewerHovercardContext", - "description": "A hovercard context with a message describing how the viewer is related.", - "fields": [ - { - "name": "message", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "octicon", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewer", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "User", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [{"kind": "INTERFACE", "name": "HovercardContext", "ofType": None}], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INTERFACE", - "name": "Votable", - "description": "A subject that may be upvoted.", - "fields": [ - { - "name": "upvoteCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanUpvote", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerHasUpvoted", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": [ - {"kind": "OBJECT", "name": "Discussion", "ofType": None}, - {"kind": "OBJECT", "name": "DiscussionComment", "ofType": None}, - ], - }, - { - "kind": "OBJECT", - "name": "Workflow", - "description": "A workflow contains meta information about an Actions workflow file.", - "fields": [ - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "runs", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "orderBy", - "description": "Ordering options for the connection", - "type": {"kind": "INPUT_OBJECT", "name": "WorkflowRunOrder", "ofType": None}, - "defaultValue": "{field: CREATED_AT, direction: DESC}", - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "WorkflowRunConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "WorkflowState", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "WorkflowFileReference", - "description": "A workflow that must run for this rule to pass", - "fields": [ - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ref", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "sha", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowFileReferenceInput", - "description": "A workflow that must run for this rule to pass", - "fields": None, - "inputFields": [ - { - "name": "path", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "ref", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "repositoryId", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "sha", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "WorkflowRun", - "description": "A workflow run.", - "fields": [ - { - "name": "checkSuite", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "CheckSuite", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "createdAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "databaseId", - "args": [], - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deploymentReviews", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentReviewConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "event", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "file", - "args": [], - "type": {"kind": "OBJECT", "name": "WorkflowRunFile", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pendingDeploymentRequests", - "args": [ - { - "name": "after", - "description": "Returns the elements in the list that come after the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "before", - "description": "Returns the elements in the list that come before the specified cursor.", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "defaultValue": None, - }, - { - "name": "first", - "description": "Returns the first _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - { - "name": "last", - "description": "Returns the last _n_ elements from the list.", - "type": {"kind": "SCALAR", "name": "Int", "ofType": None}, - "defaultValue": None, - }, - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "DeploymentRequestConnection", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "runNumber", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "updatedAt", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "DateTime", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "workflow", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "Workflow", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "WorkflowRunConnection", - "description": "The connection type for WorkflowRun.", - "fields": [ - { - "name": "edges", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "WorkflowRunEdge", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "nodes", - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "pageInfo", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "PageInfo", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "totalCount", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Int", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "WorkflowRunEdge", - "description": "An edge in a connection.", - "fields": [ - { - "name": "cursor", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "node", - "args": [], - "type": {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "WorkflowRunFile", - "description": "An executed workflow file for a workflow run.", - "fields": [ - { - "name": "id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "ID", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "path", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryFileUrl", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "repositoryName", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "resourcePath", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "run", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "WorkflowRun", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "url", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "URI", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanPushRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "viewerCanReadRepository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [ - {"kind": "INTERFACE", "name": "Node", "ofType": None}, - {"kind": "INTERFACE", "name": "UniformResourceLocatable", "ofType": None}, - ], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowRunOrder", - "description": "Ways in which lists of workflow runs can be ordered upon return.", - "fields": None, - "inputFields": [ - { - "name": "field", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "WorkflowRunOrderField", "ofType": None}, - }, - "defaultValue": None, - }, - { - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "OrderDirection", "ofType": None}, - }, - "defaultValue": None, - }, - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "WorkflowRunOrderField", - "description": "Properties by which workflow run connections can be ordered.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [{"name": "CREATED_AT", "isDeprecated": False, "deprecationReason": None}], - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "WorkflowState", - "description": "The possible states for a workflow.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "ACTIVE", "isDeprecated": False, "deprecationReason": None}, - {"name": "DELETED", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED_FORK", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED_INACTIVITY", "isDeprecated": False, "deprecationReason": None}, - {"name": "DISABLED_MANUALLY", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "WorkflowsParameters", - "description": "Require all changes made to a targeted branch to pass the specified workflows before they can be merged.", - "fields": [ - { - "name": "workflows", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "WorkflowFileReference", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - } - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowsParametersInput", - "description": "Require all changes made to a targeted branch to pass the specified workflows before they can be merged.", - "fields": None, - "inputFields": [ - { - "name": "workflows", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFileReferenceInput", - "ofType": None, - }, - }, - }, - }, - "defaultValue": None, - } - ], - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "SCALAR", - "name": "X509Certificate", - "description": "A valid x509 certificate string", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "__Directive", - "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.", - "fields": [ - { - "name": "args", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__InputValue", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isRepeatable", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "locations", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "__DirectiveLocation", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "onField", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "Use `locations`.", - }, - { - "name": "onFragment", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "Use `locations`.", - }, - { - "name": "onOperation", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": True, - "deprecationReason": "Use `locations`.", - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "QUERY", "isDeprecated": False, "deprecationReason": None}, - {"name": "MUTATION", "isDeprecated": False, "deprecationReason": None}, - {"name": "SUBSCRIPTION", "isDeprecated": False, "deprecationReason": None}, - {"name": "FIELD", "isDeprecated": False, "deprecationReason": None}, - {"name": "FRAGMENT_DEFINITION", "isDeprecated": False, "deprecationReason": None}, - {"name": "FRAGMENT_SPREAD", "isDeprecated": False, "deprecationReason": None}, - {"name": "INLINE_FRAGMENT", "isDeprecated": False, "deprecationReason": None}, - {"name": "SCHEMA", "isDeprecated": False, "deprecationReason": None}, - {"name": "SCALAR", "isDeprecated": False, "deprecationReason": None}, - {"name": "OBJECT", "isDeprecated": False, "deprecationReason": None}, - {"name": "FIELD_DEFINITION", "isDeprecated": False, "deprecationReason": None}, - {"name": "ARGUMENT_DEFINITION", "isDeprecated": False, "deprecationReason": None}, - {"name": "INTERFACE", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNION", "isDeprecated": False, "deprecationReason": None}, - {"name": "ENUM", "isDeprecated": False, "deprecationReason": None}, - {"name": "ENUM_VALUE", "isDeprecated": False, "deprecationReason": None}, - {"name": "INPUT_OBJECT", "isDeprecated": False, "deprecationReason": None}, - {"name": "INPUT_FIELD_DEFINITION", "isDeprecated": False, "deprecationReason": None}, - {"name": "VARIABLE_DEFINITION", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "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.", - "fields": [ - { - "name": "deprecationReason", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDeprecated", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "__Field", - "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.", - "fields": [ - { - "name": "args", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - } - ], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__InputValue", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deprecationReason", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDeprecated", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "type", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "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.", - "fields": [ - { - "name": "defaultValue", - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "deprecationReason", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "description", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "isDeprecated", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "type", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "__Schema", - "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.", - "fields": [ - { - "name": "description", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "directives", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__Directive", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "mutationType", - "args": [], - "type": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "queryType", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "subscriptionType", - "args": [], - "type": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "types", - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - }, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "OBJECT", - "name": "__Type", - "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 and description, 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.", - "fields": [ - { - "name": "description", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "enumValues", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - } - ], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__EnumValue", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "fields", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - } - ], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__Field", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "inputFields", - "description": None, - "args": [ - { - "name": "includeDeprecated", - "description": None, - "type": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - "defaultValue": "false", - } - ], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__InputValue", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "interfaces", - "description": None, - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "kind", - "description": None, - "args": [], - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "ENUM", "name": "__TypeKind", "ofType": None}, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "name", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "ofType", - "description": None, - "args": [], - "type": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "possibleTypes", - "description": None, - "args": [], - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "OBJECT", "name": "__Type", "ofType": None}, - }, - }, - "isDeprecated": False, - "deprecationReason": None, - }, - { - "name": "specifiedByUrl", - "description": None, - "args": [], - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - "isDeprecated": False, - "deprecationReason": None, - }, - ], - "inputFields": None, - "interfaces": [], - "enumValues": None, - "possibleTypes": None, - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "fields": None, - "inputFields": None, - "interfaces": None, - "enumValues": [ - {"name": "SCALAR", "isDeprecated": False, "deprecationReason": None}, - {"name": "OBJECT", "isDeprecated": False, "deprecationReason": None}, - {"name": "INTERFACE", "isDeprecated": False, "deprecationReason": None}, - {"name": "UNION", "isDeprecated": False, "deprecationReason": None}, - {"name": "ENUM", "isDeprecated": False, "deprecationReason": None}, - {"name": "INPUT_OBJECT", "isDeprecated": False, "deprecationReason": None}, - {"name": "LIST", "isDeprecated": False, "deprecationReason": None}, - {"name": "NON_NULL", "isDeprecated": False, "deprecationReason": None}, - ], - "possibleTypes": None, - }, - ], - "directives": [ - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"], - "args": [ - { - "name": "if", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - } - ], - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"], - "args": [ - { - "name": "if", - "type": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "Boolean", "ofType": None}, - }, - "defaultValue": None, - } - ], - }, - { - "name": "deprecated", - "locations": ["FIELD_DEFINITION", "ENUM_VALUE", "ARGUMENT_DEFINITION", "INPUT_FIELD_DEFINITION"], - "args": [ - { - "name": "reason", - "type": {"kind": "SCALAR", "name": "String", "ofType": None}, - } - ], - }, - { - "name": "requiredCapabilities", - "description": None, - "locations": [ - "OBJECT", - "SCALAR", - "ARGUMENT_DEFINITION", - "INTERFACE", - "INPUT_OBJECT", - "FIELD_DEFINITION", - "ENUM", - "ENUM_VALUE", - "UNION", - "INPUT_FIELD_DEFINITION", - ], - "args": [ - { - "name": "requiredCapabilities", - "description": None, - "type": { - "kind": "LIST", - "name": None, - "ofType": { - "kind": "NON_NULL", - "name": None, - "ofType": {"kind": "SCALAR", "name": "String", "ofType": None}, - }, - }, - "defaultValue": None, - } - ], - }, - ], - } - } -} diff --git a/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py b/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py index f7cd3452..d007ffa4 100644 --- a/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py +++ b/backend/lambdas/scheduled/update_github_org_users/tests/test_query_users_for_org.py @@ -1,62 +1,74 @@ import unittest -import responses -from data.introspection_json import introspection -from update_github_org_users.util.github import _get_client, _build_queries -from graphql import print_ast +from update_github_org_users.util.github import _build_queries -def noop(): - pass +ORG = "org" class TestQueryUsersForOrg(unittest.TestCase): - @responses.activate() def test_query_single_user_for_org(self): - expected_query = """query ($q1: String!, $org: String!) { - q1: user(login: $q1) { - organization(login: $org) { + expected_query = """query GetUsers( + $org: String! + $q1: String! +) { + q1: user( + login: $q1 + ) { + organization( + login: $org + ) { login } } }""" - responses.add(responses.POST, "https://api.github.com/graphql", json=introspection, status=200) - client = _get_client("") - with client as session: - org = "artemis" - github_users = [{"artemis_user_id": "1234", "username": "test-user", "query_name": "q1"}] - query, variables = _build_queries(client, org, github_users) - self.assertEqual(print_ast(query), expected_query) - self.assertEqual(variables, {"org": "artemis", "q1": "test-user"}) + github_users = [{"artemis_user_id": "1234", "username": "test-user", "query_name": "q1"}] + query, variables = _build_queries(ORG, github_users) + self.assertEqual(query, expected_query) + self.assertEqual(variables, {"org": ORG, "q1": "test-user"}) - @responses.activate() def test_query_users_for_org(self): - expected_query = """query ($q1: String!, $org: String!, $q2: String!, $q3: String!) { - q1: user(login: $q1) { - organization(login: $org) { + expected_query = """query GetUsers( + $org: String! + $q1: String! + $q2: String! + $q3: String! +) { + q1: user( + login: $q1 + ) { + organization( + login: $org + ) { login } } - q2: user(login: $q2) { - organization(login: $org) { + + q2: user( + login: $q2 + ) { + organization( + login: $org + ) { login } } - q3: user(login: $q3) { - organization(login: $org) { + + q3: user( + login: $q3 + ) { + organization( + login: $org + ) { login } } }""" - expected_vars = {"q1": "test-user1", "q2": "test-user2", "q3": "test-user3", "org": "artemis"} - responses.add(responses.POST, "https://api.github.com/graphql", json=introspection, status=200) - client = _get_client("") - with client as session: - org = "artemis" - github_users = [ - {"artemis_user_id": "1234", "username": "test-user1", "query_name": "q1"}, - {"artemis_user_id": "12345", "username": "test-user2", "query_name": "q2"}, - {"artemis_user_id": "123456", "username": "test-user3", "query_name": "q3"}, - ] - query, variables = _build_queries(client, org, github_users) - self.assertEqual(print_ast(query), expected_query) - self.assertEqual(variables, expected_vars) + expected_vars = {"q1": "test-user1", "q2": "test-user2", "q3": "test-user3", "org": ORG} + github_users = [ + {"artemis_user_id": "1234", "username": "test-user1", "query_name": "q1"}, + {"artemis_user_id": "12345", "username": "test-user2", "query_name": "q2"}, + {"artemis_user_id": "123456", "username": "test-user3", "query_name": "q3"}, + ] + query, variables = _build_queries(ORG, github_users) + self.assertEqual(query, expected_query) + self.assertEqual(variables, expected_vars) diff --git a/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py b/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py index c2ec87e5..a6e6a31d 100644 --- a/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py +++ b/backend/lambdas/scheduled/update_github_org_users/update_github_org_users/util/github.py @@ -1,8 +1,7 @@ import os +import requests from typing import Union -from gql import Client -from gql.transport.requests import RequestsHTTPTransport -from gql.dsl import DSLQuery, DSLSchema, dsl_gql, DSLVariableDefinitions, DSLVariable +from graphql_query import Argument, Field, Operation, Query, Variable from artemislib.github.app import GithubApp from artemislib.logging import Logger @@ -31,43 +30,46 @@ def query_users_for_org(authorization: str, github_users: list, org: str) -> Uni """ Given a list of GitHub users, determine if each is/is not part of a given org """ - client = _get_client(authorization) - with client as session: - query, variables = _build_queries(client, org, github_users) + headers = {"accept": "application/vnd.github.v3+json", "authorization": f"{authorization}"} - result = session.execute(query, variable_values=variables, get_execution_result=True) - return result + query, variables = _build_queries(org, github_users) + r = requests.post("https://api.github.com/graphql", json={"query": query, "variables": variables}, headers=headers) + if r.status_code != 200: + log.error("Non-200 status code returned from GitHub") + log.error(f"Status Code: {r.status_code}") + log.error(f"Body: {r.text}") + return False -def _get_client(authorization): - headers = {"accept": "application/vnd.github.v3+json", "authorization": f"{authorization}"} - transport = RequestsHTTPTransport(url="https://api.github.com/graphql", headers=headers) - return Client(transport=transport, fetch_schema_from_transport=True) + return r.json() -def _build_queries(client, org, github_users): +def _build_queries(org, github_users): user_queries = [] variables = {"org": org} - assert client.schema is not None + var_defs = {} + var_defs.update({"org": Variable(name="org", type="String!")}) - ds = DSLSchema(client.schema) - var_defs = DSLVariableDefinitions() for github_user in github_users: variables.update({github_user["query_name"]: github_user["username"]}) - # This is kind of hacky but it won't let us dynamically set vars otherwise. - var_defs.variables[github_user["query_name"]] = DSLVariable(github_user["query_name"]) + var_defs.update({github_user["query_name"]: Variable(name=github_user["query_name"], type="String!")}) user_queries.append( - ( - ds.Query.user.args(login=var_defs.variables[github_user["query_name"]]) - .alias(github_user["query_name"]) - .select(ds.User.organization.args(login=var_defs.org).select(ds.Organization.login)) + Query( + name="user", + alias=github_user["query_name"], + arguments=[Argument(name="login", value=var_defs.get(github_user["query_name"]))], + fields=[ + Field( + name="organization", + arguments=[Argument(name="login", value=var_defs.get("org"))], + fields=["login"], + ) + ], ) ) - operation = DSLQuery(*user_queries) - operation.variable_definitions = var_defs - query = dsl_gql(operation) - return query, variables + operation = Operation(type="query", name="GetUsers", variables=var_defs.values(), queries=user_queries) + return operation.render(), variables def _get_api_key(service_secret): From 48e08ac6a317088fdbb0ff3fafb91bc2ce8bef31 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 9 May 2024 15:06:27 -0400 Subject: [PATCH 09/37] removing unused package --- .../lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py index f81e60f5..e239fc03 100644 --- a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py +++ b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py @@ -3,7 +3,6 @@ import re import urllib import requests -from string import Template from graphql_query import Argument, Field, Operation, Query, Variable from repo.util.aws import AWSConnect From a4b0539c30a27f181da0cfad501e7abd50d02bd7 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 9 May 2024 15:08:55 -0400 Subject: [PATCH 10/37] removing duplicated function --- .../api/repo/repo/github_util/github_utils.py | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/backend/lambdas/api/repo/repo/github_util/github_utils.py b/backend/lambdas/api/repo/repo/github_util/github_utils.py index 67e88a56..164626dd 100644 --- a/backend/lambdas/api/repo/repo/github_util/github_utils.py +++ b/backend/lambdas/api/repo/repo/github_util/github_utils.py @@ -39,27 +39,6 @@ def process_github( return PROCESS_RESPONSE_TUPLE(total_queued, total_failed, unauthorized) -def _get_query_response(authorization, service_url, query, variables): - # Query the GitHub API - headers = {"Authorization": authorization, "Content-Type": "application/json"} - if REV_PROXY_DOMAIN_SUBSTRING and REV_PROXY_DOMAIN_SUBSTRING in service_url: - headers[REV_PROXY_SECRET_HEADER] = GetProxySecret() - log.error(service_url) - response = requests.post( - url=service_url, - headers=headers, - json={"query": query, "variables": variables}, - ) - - log.info("Got API response") - - if response.status_code != 200: - log.error("Error retrieving query: %s", response.text) - return None - - return json.loads(response.text) - - def _build_query(org, req_list, service, authz): # Build up a GraphQL query for each repo in the request unauthorized = [] From 1e53c6e63ebd773776bf17b4d927bd3b99a25b61 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 9 May 2024 15:14:17 -0400 Subject: [PATCH 11/37] linting cleanup --- .../heimdall_orgs/org_queue_private_github.py | 7 ++++++- .../layers/heimdall_repos/heimdall_repos/gitlab_utils.py | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/orchestrator/lambdas/layers/heimdall_orgs/heimdall_orgs/org_queue_private_github.py b/orchestrator/lambdas/layers/heimdall_orgs/heimdall_orgs/org_queue_private_github.py index d1590983..bbc70015 100644 --- a/orchestrator/lambdas/layers/heimdall_orgs/heimdall_orgs/org_queue_private_github.py +++ b/orchestrator/lambdas/layers/heimdall_orgs/heimdall_orgs/org_queue_private_github.py @@ -100,7 +100,12 @@ def _query_service(self, query, cursor): headers[REV_PROXY_SECRET_HEADER] = GetProxySecret() try: - response = requests.post(url=self.api_url, headers=headers, json={"query": query, "variables": {"cursor": cursor}}, timeout=TIMEOUT) + response = requests.post( + url=self.api_url, + headers=headers, + json={"query": query, "variables": {"cursor": cursor}}, + timeout=TIMEOUT, + ) except requests.exceptions.Timeout: log.error("Request timed out after %ss retrieving orgs for %s", TIMEOUT, self.service) return None diff --git a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/gitlab_utils.py b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/gitlab_utils.py index 0cc4de19..61d90116 100644 --- a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/gitlab_utils.py +++ b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/gitlab_utils.py @@ -1,6 +1,7 @@ """ Takes care of gitlab service queries, returning a list of repositories to be queued for scanning """ + # pylint: disable=no-name-in-module, no-member from typing import Tuple @@ -232,7 +233,10 @@ def _query_gitlab_api(self, url) -> str or None: response = requests.post( url=url, headers=self._get_request_headers(url), - json={"query": GITLAB_REPO_QUERY, "variables": {"org": self.service_info.org, "cursor": self.service_info.cursor}}, + json={ + "query": GITLAB_REPO_QUERY, + "variables": {"org": self.service_info.org, "cursor": self.service_info.cursor}, + }, timeout=DEFAULT_API_TIMEOUT, ) if response.status_code != 200: From 8b30c4f135a0a9324c4632820142095d3bcf3abb Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Mon, 13 May 2024 11:45:53 -0400 Subject: [PATCH 12/37] fixing graphql query issue --- backend/lambdas/api/repo/repo/github_util/github_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/lambdas/api/repo/repo/github_util/github_utils.py b/backend/lambdas/api/repo/repo/github_util/github_utils.py index 164626dd..9c6c5339 100644 --- a/backend/lambdas/api/repo/repo/github_util/github_utils.py +++ b/backend/lambdas/api/repo/repo/github_util/github_utils.py @@ -80,7 +80,7 @@ def _build_query(org, req_list, service, authz): query.fields.append( Field( name="ref", - arguments=[Argument(name="qualified_name", value=var_defs.get(branch_alias))], + arguments=[Argument(name="qualifiedName", value=var_defs.get(branch_alias))], fields=["name"], ) ) @@ -99,7 +99,7 @@ def _get_query_response(authorization, service_url, query, variables): headers = {"Authorization": authorization, "Content-Type": "application/json"} if REV_PROXY_DOMAIN_SUBSTRING and REV_PROXY_DOMAIN_SUBSTRING in service_url: headers[REV_PROXY_SECRET_HEADER] = GetProxySecret() - log.error(service_url) + response = requests.post( url=service_url, headers=headers, From cf3b872db049401d06ab47be42704205fd514eb0 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Mon, 13 May 2024 11:56:43 -0400 Subject: [PATCH 13/37] fixing test --- backend/lambdas/api/repo/tests/test_github_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/repo/tests/test_github_utils.py b/backend/lambdas/api/repo/tests/test_github_utils.py index a34ebb8c..07b05826 100644 --- a/backend/lambdas/api/repo/tests/test_github_utils.py +++ b/backend/lambdas/api/repo/tests/test_github_utils.py @@ -48,7 +48,7 @@ def test_multi_repos_with_some_branches(self): isPrivate diskUsage ref( - qualified_name: $branch0 + qualifiedName: $branch0 ) { name } From ba64d96ab3f65a56e74d2872deeb06668bc7ae68 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Mon, 13 May 2024 12:03:11 -0400 Subject: [PATCH 14/37] fixing tests --- backend/lambdas/api/repo/tests/test_github_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/lambdas/api/repo/tests/test_github_utils.py b/backend/lambdas/api/repo/tests/test_github_utils.py index 07b05826..0c99248f 100644 --- a/backend/lambdas/api/repo/tests/test_github_utils.py +++ b/backend/lambdas/api/repo/tests/test_github_utils.py @@ -73,7 +73,7 @@ def test_multi_repos_with_some_branches(self): isPrivate diskUsage ref( - qualified_name: $branch2 + qualifiedName: $branch2 ) { name } @@ -88,7 +88,7 @@ def test_multi_repos_with_some_branches(self): isPrivate diskUsage ref( - qualified_name: $branch3 + qualifiedName: $branch3 ) { name } From 15e940c4c134f01e9aa0e67ece7d1a57668a9e3c Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Mon, 13 May 2024 12:29:45 -0400 Subject: [PATCH 15/37] adding fix for non batch, and adding test --- .../api/repo/repo/gitlab_util/process_gitlab_utils.py | 2 +- .../lambdas/api/repo/tests/test_process_gitlab_utils.py | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py index e239fc03..3bb906b2 100644 --- a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py +++ b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py @@ -115,7 +115,7 @@ def build_queries(req_list, authz, service, batch_queries): queries.append(operation.render()) else: for item in query_list: - operation = Operation(type="query", name="GetRepo", variables=var_defs.values(), queries=item) + operation = Operation(type="query", name="GetRepo", variables=var_defs.values(), queries=[item]) queries.append(operation.render()) return queries, variables, query_map, unauthorized diff --git a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py index 12562f4c..f1b2974a 100644 --- a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py +++ b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py @@ -90,3 +90,11 @@ def test_build_queries_branch(self): ) self.assertEqual(query_list[0], GITLAB_QUERY_WITH_BRANCH_EXPECTED) self.assertEqual(variables, {"org": "testorg", "repo0": "testorg/artemis", "branch0": "main"}) + + def test_build_queries_branch_nobatch(self): + request_list = [{"org": "testorg", "repo": "artemis", "branch": "main"}] + query_list, variables, _, _ = process_gitlab_utils.build_queries( + req_list=request_list, authz=AUTHZ, service=SERVICE, batch_queries=False + ) + self.assertEqual(query_list[0], GITLAB_QUERY_WITH_BRANCH_EXPECTED) + self.assertEqual(variables, {"org": "testorg", "repo0": "testorg/artemis", "branch0": "main"}) From befc66e658e755d61dd3552da52453b24fcd2239 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Mon, 13 May 2024 12:46:28 -0400 Subject: [PATCH 16/37] updating query name to match test --- .../lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py index 3bb906b2..0ec98f2e 100644 --- a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py +++ b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py @@ -115,7 +115,7 @@ def build_queries(req_list, authz, service, batch_queries): queries.append(operation.render()) else: for item in query_list: - operation = Operation(type="query", name="GetRepo", variables=var_defs.values(), queries=[item]) + operation = Operation(type="query", name="GetRepos", variables=var_defs.values(), queries=[item]) queries.append(operation.render()) return queries, variables, query_map, unauthorized From a30135e3937e76dd8456c5a81d38acd50f9ea227 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 09:49:53 -0400 Subject: [PATCH 17/37] fixing gitlab --- .../repo/gitlab_util/process_gitlab_utils.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py index 0ec98f2e..94d92fe2 100644 --- a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py +++ b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py @@ -18,10 +18,10 @@ def process_query_list(key, service_url, query_list, vars, batch_query=True): response_dict = {"data": {}} for query_item in query_list: resp = _get_query_response(key, service_url, query_item, vars) - if resp and "data" in resp and "project" in resp.get("data"): - resp_data = resp["data"]["project"] - repo = re.match("repo[0-9]*", query_item.strip()).group(0) - response_dict["data"][repo] = resp_data + if resp and "data" in resp: + resp_data = resp["data"] + repo = re.search("repo[0-9]*", query_item.strip()).group(0) + response_dict["data"][repo] = resp_data[repo] else: log.error("Repo query failed to receive valid output: %s", query_item) @@ -63,13 +63,11 @@ def build_queries(req_list, authz, service, batch_queries): variables = {} var_defs = {} queries = [] - var_defs.update({"org": Variable(name="org", type="String!")}) count = 0 for req in req_list: branch_name = req.get("branch") org_name = req.get("org", DEFAULT_ORG) - variables.update({"org": org_name}) # Validate that this API key is authorized to scan this repo allowed = auth(f"{org_name}/{req['repo']}", service, authz) if not allowed: @@ -77,9 +75,10 @@ def build_queries(req_list, authz, service, batch_queries): continue repo_alias = f"repo{count}" - variables.update({repo_alias: f"{org_name}/{req['repo']}"}) + repo_id = f"{org_name}/{req['repo']}" + variables.update({repo_alias: repo_id}) - var_defs.update({repo_alias: Variable(name=repo_alias, type="String!")}) + var_defs.update({repo_alias: Variable(name=repo_alias, type="ID!")}) query = Query( name="project", alias=repo_alias, @@ -107,7 +106,7 @@ def build_queries(req_list, authz, service, batch_queries): variables.update({branch_alias: branch_name}) query_list.append(query) - query_map["repo%d" % count] = {"repo": "%s/%s" % (org_name, req["repo"]), "branch": branch_name} + query_map["repo%d" % count] = {"repo": repo_id, "branch": branch_name} count += 1 if batch_queries: From c047f7a9eb8ffd7abef7be3657e19b47ff115d31 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 10:41:05 -0400 Subject: [PATCH 18/37] fixing other tests --- .../lambdas/api/repo/tests/test_process_gitlab_utils.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py index f1b2974a..5cb692cd 100644 --- a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py +++ b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py @@ -7,8 +7,7 @@ AUTHZ = [[["gitlab/*"]]] GITLAB_QUERY_WITH_BRANCH_EXPECTED = """query GetRepos( - $org: String! - $repo0: String! + $repo0: ID! $branch0: String! ) { repo0: project( @@ -32,8 +31,7 @@ } }""" GITLAB_QUERY_NO_BRANCH_EXPECTED = """query GetRepos( - $org: String! - $repo0: String! + $repo0: ID! ) { repo0: project( fullPath: $repo0 @@ -53,7 +51,7 @@ ] TEST_QUERY_RESPONSE = { "data": { - "project": { + "repo0": { "httpUrlToRepo": "https://test_gitlab_instance/test/test_package.git", "fullPath": "test/test_package", "visibility": "internal", From deae4589cb40c2fa4f85e432e5b45bf9bbb15bca Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 10:46:28 -0400 Subject: [PATCH 19/37] fixing another test --- backend/lambdas/api/repo/tests/test_process_gitlab_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py index 5cb692cd..add2357f 100644 --- a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py +++ b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py @@ -60,7 +60,7 @@ } } -TEST_RESPONSE_DICT = {"data": {"repo0": TEST_QUERY_RESPONSE["data"]["project"]}} +TEST_RESPONSE_DICT = {"data": {"repo0": TEST_QUERY_RESPONSE["data"]["repo0"]}} class TestGitlabUtils(unittest.TestCase): From ff5120ab9ceb7b604a599af896cd5a3b113a9622 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 10:50:50 -0400 Subject: [PATCH 20/37] fixing another test --- backend/lambdas/api/repo/tests/test_process_gitlab_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py index add2357f..3c0565f8 100644 --- a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py +++ b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py @@ -79,7 +79,7 @@ def test_build_query_no_branch(self): ) print(query_list[0]) self.assertEqual(query_list[0], GITLAB_QUERY_NO_BRANCH_EXPECTED) - self.assertEqual(variables, {"org": "testorg", "repo0": "testorg/artemis"}) + self.assertEqual(variables, {"repo0": "testorg/artemis"}) def test_build_queries_branch(self): request_list = [{"org": "testorg", "repo": "artemis", "branch": "main"}] @@ -87,7 +87,7 @@ def test_build_queries_branch(self): req_list=request_list, authz=AUTHZ, service=SERVICE, batch_queries=True ) self.assertEqual(query_list[0], GITLAB_QUERY_WITH_BRANCH_EXPECTED) - self.assertEqual(variables, {"org": "testorg", "repo0": "testorg/artemis", "branch0": "main"}) + self.assertEqual(variables, {"repo0": "testorg/artemis", "branch0": "main"}) def test_build_queries_branch_nobatch(self): request_list = [{"org": "testorg", "repo": "artemis", "branch": "main"}] @@ -95,4 +95,4 @@ def test_build_queries_branch_nobatch(self): req_list=request_list, authz=AUTHZ, service=SERVICE, batch_queries=False ) self.assertEqual(query_list[0], GITLAB_QUERY_WITH_BRANCH_EXPECTED) - self.assertEqual(variables, {"org": "testorg", "repo0": "testorg/artemis", "branch0": "main"}) + self.assertEqual(variables, {"repo0": "testorg/artemis", "branch0": "main"}) From b7e662066855623fdee50582ecd3f291cd7c5f1f Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 13:49:30 -0400 Subject: [PATCH 21/37] PR improvements --- .../lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py | 4 +++- .../layers/heimdall_repos/heimdall_repos/repo_layer_env.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py index 94d92fe2..4b82717b 100644 --- a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py +++ b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py @@ -20,7 +20,9 @@ def process_query_list(key, service_url, query_list, vars, batch_query=True): resp = _get_query_response(key, service_url, query_item, vars) if resp and "data" in resp: resp_data = resp["data"] - repo = re.search("repo[0-9]*", query_item.strip()).group(0) + # Parsing out the alias from the GraphQL query, so we can use it for mapping. + # ex: query GetRepos($repo0: ID!) {repo0: project(fullPath: $repo0) {**} + repo = re.search("\$(repo[0-9]*):", query_item.strip()).group(0) response_dict["data"][repo] = resp_data[repo] else: log.error("Repo query failed to receive valid output: %s", query_item) diff --git a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py index 1d7299bc..31b7d010 100644 --- a/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py +++ b/orchestrator/lambdas/layers/heimdall_repos/heimdall_repos/repo_layer_env.py @@ -56,7 +56,7 @@ } } isPrivate - refs(first: 75, refPrefix: "refs/heads/", direction: ASC) { + refs(first: 75, refPrefix: "refs/heads/", direction: ASC) { nodes { name target { From 93b8113e93e3bbd2f2b0855ce978cbebc88c52e0 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 14:36:39 -0400 Subject: [PATCH 22/37] fixing test, adding to readme --- .../api/repo/tests/test_process_gitlab_utils.py | 3 +-- backend/lambdas/api/system_services/README.md | 17 ++++++++++++++++- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py index 3c0565f8..4679c3e9 100644 --- a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py +++ b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py @@ -46,8 +46,7 @@ }""" TEST_SERVICE_URL = None TEST_QUERY_LIST = [ - ' repo0 {\n project(fullPath: "test/test_package") {\n httpUrlToRepo,' - "\n fullPath,\n visibility,\n statistics {\n repositorySize\n }\n }\n}" + "query GetRepos( $repo0: ID!) { repo0: project( fullPath: $repo0 ) { httpUrlToRepo fullPath visibility statistics { repositorySize } }}" ] TEST_QUERY_RESPONSE = { "data": { diff --git a/backend/lambdas/api/system_services/README.md b/backend/lambdas/api/system_services/README.md index 030bb059..3d72c3a1 100644 --- a/backend/lambdas/api/system_services/README.md +++ b/backend/lambdas/api/system_services/README.md @@ -1 +1,16 @@ -# Service management +# Service Management + +This service is for verifying that Artemis can connect to your VCS organizations. + +## Local Testing + +Before running API runner locally, you will need to create a user in your local db and assign them access to services. + +- To create a user, you can get a shell environment in the engine container. +- Then run `python` to get an interactive shell. +- Add required packages using `from artemisdb.artemisdb.models import Group, User` +- Then you can add a user `user = User.objects.create(email='testuser@example.com', scope='["*"]')` +- Warning: this will assign the user to all scopes. +- Then you need to add the user to a group. + +Using API Runner, you can then test the API with the following command `api_runner --api system_services --method GET --path-params '{"system_service_id":"YOUR_SERVICE/YOUR_REPO"}'` From 374a91a8928be31b11adee131077d45df904182f Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 14:37:54 -0400 Subject: [PATCH 23/37] fixing misinfo in README --- backend/lambdas/api/system_services/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/system_services/README.md b/backend/lambdas/api/system_services/README.md index 3d72c3a1..759b4cdd 100644 --- a/backend/lambdas/api/system_services/README.md +++ b/backend/lambdas/api/system_services/README.md @@ -13,4 +13,4 @@ Before running API runner locally, you will need to create a user in your local - Warning: this will assign the user to all scopes. - Then you need to add the user to a group. -Using API Runner, you can then test the API with the following command `api_runner --api system_services --method GET --path-params '{"system_service_id":"YOUR_SERVICE/YOUR_REPO"}'` +Using API Runner, you can then test the API with the following command `api_runner --api system_services --method GET --path-params '{"system_service_id":"YOUR_SERVICE/YOUR_ORG"}'` From 9175b39d0953b8dc2de8c00e599bb7656ec16ef7 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 14:44:19 -0400 Subject: [PATCH 24/37] fixing regex --- .../lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py index 4b82717b..d0ab7d8b 100644 --- a/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py +++ b/backend/lambdas/api/repo/repo/gitlab_util/process_gitlab_utils.py @@ -22,7 +22,7 @@ def process_query_list(key, service_url, query_list, vars, batch_query=True): resp_data = resp["data"] # Parsing out the alias from the GraphQL query, so we can use it for mapping. # ex: query GetRepos($repo0: ID!) {repo0: project(fullPath: $repo0) {**} - repo = re.search("\$(repo[0-9]*):", query_item.strip()).group(0) + repo = re.search("\$(repo[0-9]*):", query_item.strip()).group(1) response_dict["data"][repo] = resp_data[repo] else: log.error("Repo query failed to receive valid output: %s", query_item) From 957e0b7422d247a9f88e7250884ee2e52b59a21b Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 14:46:13 -0400 Subject: [PATCH 25/37] adding missing code for readme --- backend/lambdas/api/system_services/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/system_services/README.md b/backend/lambdas/api/system_services/README.md index 759b4cdd..caa4ef8a 100644 --- a/backend/lambdas/api/system_services/README.md +++ b/backend/lambdas/api/system_services/README.md @@ -11,6 +11,6 @@ Before running API runner locally, you will need to create a user in your local - Add required packages using `from artemisdb.artemisdb.models import Group, User` - Then you can add a user `user = User.objects.create(email='testuser@example.com', scope='["*"]')` - Warning: this will assign the user to all scopes. -- Then you need to add the user to a group. +- Then you need to add the user to a group. `Group.create_self_group(user)\` Using API Runner, you can then test the API with the following command `api_runner --api system_services --method GET --path-params '{"system_service_id":"YOUR_SERVICE/YOUR_ORG"}'` From 37ccc3f386966f9e56ceb446e28b3073bd1fb3d5 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Tue, 14 May 2024 14:47:24 -0400 Subject: [PATCH 26/37] typo in readme --- backend/lambdas/api/system_services/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/system_services/README.md b/backend/lambdas/api/system_services/README.md index caa4ef8a..1a85c6cd 100644 --- a/backend/lambdas/api/system_services/README.md +++ b/backend/lambdas/api/system_services/README.md @@ -11,6 +11,6 @@ Before running API runner locally, you will need to create a user in your local - Add required packages using `from artemisdb.artemisdb.models import Group, User` - Then you can add a user `user = User.objects.create(email='testuser@example.com', scope='["*"]')` - Warning: this will assign the user to all scopes. -- Then you need to add the user to a group. `Group.create_self_group(user)\` +- Then you need to add the user to a group. `Group.create_self_group(user)` Using API Runner, you can then test the API with the following command `api_runner --api system_services --method GET --path-params '{"system_service_id":"YOUR_SERVICE/YOUR_ORG"}'` From 0c0a283b3361080dea69daa66f812ce3836ebae5 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Wed, 15 May 2024 14:02:10 -0400 Subject: [PATCH 27/37] adding setup.py --- backend/lambdas/api/repo/setup.py | 5 +---- backend/lambdas/scheduled/update_github_org_users/setup.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/backend/lambdas/api/repo/setup.py b/backend/lambdas/api/repo/setup.py index c177485d..93683c40 100644 --- a/backend/lambdas/api/repo/setup.py +++ b/backend/lambdas/api/repo/setup.py @@ -21,10 +21,7 @@ url=("https://github.com/warnermedia/artemis/backend/lambdas/api/repo"), packages=find_packages(), setup_requires=["pytest-runner"], - install_requires=[ - "requests", - "urllib3<2", # https://github.com/boto/botocore/issues/2926 - ], + install_requires=["requests", "urllib3<2", "graphql_query"], # https://github.com/boto/botocore/issues/2926 tests_require=["pytest"], classifiers=[ "Programming Language :: Python :: 3.9", diff --git a/backend/lambdas/scheduled/update_github_org_users/setup.py b/backend/lambdas/scheduled/update_github_org_users/setup.py index 41274e00..188263f6 100644 --- a/backend/lambdas/scheduled/update_github_org_users/setup.py +++ b/backend/lambdas/scheduled/update_github_org_users/setup.py @@ -21,7 +21,7 @@ url=("https://github.com/warnermedia/artemis/backend/lambdas/scheduled/update_github_org_users"), packages=find_packages(), setup_requires=["pytest-runner"], - install_requires=[], + install_requires=["graphql_query"], tests_require=["pytest"], classifiers=[ "Programming Language :: Python :: 3.9", From abc1693902d8ca4b2d1023b805149366d4f86ef1 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Wed, 15 May 2024 14:29:35 -0400 Subject: [PATCH 28/37] adding child deps --- backend/lambdas/api/repo/setup.py | 7 ++++++- backend/lambdas/scheduled/update_github_org_users/setup.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/backend/lambdas/api/repo/setup.py b/backend/lambdas/api/repo/setup.py index 93683c40..ba9f2446 100644 --- a/backend/lambdas/api/repo/setup.py +++ b/backend/lambdas/api/repo/setup.py @@ -21,7 +21,12 @@ url=("https://github.com/warnermedia/artemis/backend/lambdas/api/repo"), packages=find_packages(), setup_requires=["pytest-runner"], - install_requires=["requests", "urllib3<2", "graphql_query"], # https://github.com/boto/botocore/issues/2926 + install_requires=[ + "requests", + "urllib3<2", # https://github.com/boto/botocore/issues/2926 + "graphql_query", + "pydantic_core", + ], tests_require=["pytest"], classifiers=[ "Programming Language :: Python :: 3.9", diff --git a/backend/lambdas/scheduled/update_github_org_users/setup.py b/backend/lambdas/scheduled/update_github_org_users/setup.py index 188263f6..536f93c0 100644 --- a/backend/lambdas/scheduled/update_github_org_users/setup.py +++ b/backend/lambdas/scheduled/update_github_org_users/setup.py @@ -21,7 +21,7 @@ url=("https://github.com/warnermedia/artemis/backend/lambdas/scheduled/update_github_org_users"), packages=find_packages(), setup_requires=["pytest-runner"], - install_requires=["graphql_query"], + install_requires=["graphql_query", "pydantic_core"], tests_require=["pytest"], classifiers=[ "Programming Language :: Python :: 3.9", From a12e8dbe8402fcdfcb3ac055dc6645907bcda48e Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Wed, 15 May 2024 16:04:55 -0400 Subject: [PATCH 29/37] trying again --- backend/lambdas/api/repo/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/repo/setup.py b/backend/lambdas/api/repo/setup.py index ba9f2446..34e2ec70 100644 --- a/backend/lambdas/api/repo/setup.py +++ b/backend/lambdas/api/repo/setup.py @@ -25,7 +25,7 @@ "requests", "urllib3<2", # https://github.com/boto/botocore/issues/2926 "graphql_query", - "pydantic_core", + "pydantic_core._pydantic_core", ], tests_require=["pytest"], classifiers=[ From 80083100dd7cc28976c908deda0d9d5429d0bfc0 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Wed, 15 May 2024 16:10:04 -0400 Subject: [PATCH 30/37] switching back to other version --- backend/lambdas/api/repo/setup.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/backend/lambdas/api/repo/setup.py b/backend/lambdas/api/repo/setup.py index 34e2ec70..93683c40 100644 --- a/backend/lambdas/api/repo/setup.py +++ b/backend/lambdas/api/repo/setup.py @@ -21,12 +21,7 @@ url=("https://github.com/warnermedia/artemis/backend/lambdas/api/repo"), packages=find_packages(), setup_requires=["pytest-runner"], - install_requires=[ - "requests", - "urllib3<2", # https://github.com/boto/botocore/issues/2926 - "graphql_query", - "pydantic_core._pydantic_core", - ], + install_requires=["requests", "urllib3<2", "graphql_query"], # https://github.com/boto/botocore/issues/2926 tests_require=["pytest"], classifiers=[ "Programming Language :: Python :: 3.9", From 9f50deba4ad9b5ef266a5c7b8b6ea9bad88903e2 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 16 May 2024 08:05:31 -0400 Subject: [PATCH 31/37] try to specify lambda platform --- backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile b/backend/Makefile index 2609b3ca..e5903222 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -350,7 +350,7 @@ dist/api/index.html: lambdas/api/spec.yaml dist/lambdas/%.zip: $$(shell find lambdas/$$* -type f) @echo "${INFO}Building $*" mkdir -p ${BUILD_DIR}/lambdas/$* - ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade + ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --platform manylinux2014_aarch64 cp lambdas/$*/handlers.py ${BUILD_DIR}/lambdas/$* mkdir -p ${DIST_DIR}/lambdas/$* cd ${BUILD_DIR}/lambdas/$*; zip -r ${DIST_DIR}/lambdas/$*.zip * From 5ea7061299164e1c99281ee7e9cba95cd7e1aebb Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 16 May 2024 08:08:49 -0400 Subject: [PATCH 32/37] try again --- backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile b/backend/Makefile index e5903222..a86cd6e6 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -350,7 +350,7 @@ dist/api/index.html: lambdas/api/spec.yaml dist/lambdas/%.zip: $$(shell find lambdas/$$* -type f) @echo "${INFO}Building $*" mkdir -p ${BUILD_DIR}/lambdas/$* - ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --platform manylinux2014_aarch64 + ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --platform manylinux2014_aarch64 --only-binary=:all: cp lambdas/$*/handlers.py ${BUILD_DIR}/lambdas/$* mkdir -p ${DIST_DIR}/lambdas/$* cd ${BUILD_DIR}/lambdas/$*; zip -r ${DIST_DIR}/lambdas/$*.zip * From 20ff20d6184acb8d12602b5bd201922fc8b730a2 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 16 May 2024 08:36:55 -0400 Subject: [PATCH 33/37] adding another platform --- backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile b/backend/Makefile index a86cd6e6..c18cd5b8 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -350,7 +350,7 @@ dist/api/index.html: lambdas/api/spec.yaml dist/lambdas/%.zip: $$(shell find lambdas/$$* -type f) @echo "${INFO}Building $*" mkdir -p ${BUILD_DIR}/lambdas/$* - ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --platform manylinux2014_aarch64 --only-binary=:all: + ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --platform manylinux_2_17_x86_64 --platform manylinux2014_aarch64 --only-binary=:all: cp lambdas/$*/handlers.py ${BUILD_DIR}/lambdas/$* mkdir -p ${DIST_DIR}/lambdas/$* cd ${BUILD_DIR}/lambdas/$*; zip -r ${DIST_DIR}/lambdas/$*.zip * From 91f9ce72efb987cfb360f64e623d4ed717c68dfe Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 16 May 2024 09:21:42 -0400 Subject: [PATCH 34/37] again and again --- backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile b/backend/Makefile index c18cd5b8..8535c0ae 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -350,7 +350,7 @@ dist/api/index.html: lambdas/api/spec.yaml dist/lambdas/%.zip: $$(shell find lambdas/$$* -type f) @echo "${INFO}Building $*" mkdir -p ${BUILD_DIR}/lambdas/$* - ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --platform manylinux_2_17_x86_64 --platform manylinux2014_aarch64 --only-binary=:all: + ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --only-binary=:all: ${LAMBDA_PLATFORM_FLAGS} cp lambdas/$*/handlers.py ${BUILD_DIR}/lambdas/$* mkdir -p ${DIST_DIR}/lambdas/$* cd ${BUILD_DIR}/lambdas/$*; zip -r ${DIST_DIR}/lambdas/$*.zip * From 600ab071e3e491805651f0b6c7498d4ce095d7e6 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Thu, 16 May 2024 10:30:22 -0400 Subject: [PATCH 35/37] specify py version --- backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile b/backend/Makefile index 8535c0ae..b181aa54 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -350,7 +350,7 @@ dist/api/index.html: lambdas/api/spec.yaml dist/lambdas/%.zip: $$(shell find lambdas/$$* -type f) @echo "${INFO}Building $*" mkdir -p ${BUILD_DIR}/lambdas/$* - ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --only-binary=:all: ${LAMBDA_PLATFORM_FLAGS} + ${PIP} install lambdas/$* -t ${BUILD_DIR}/lambdas/$* --upgrade --only-binary=:all: ${LAMBDA_PLATFORM_FLAGS} --python-version ${LAMBDA_PYTHON_VER} cp lambdas/$*/handlers.py ${BUILD_DIR}/lambdas/$* mkdir -p ${DIST_DIR}/lambdas/$* cd ${BUILD_DIR}/lambdas/$*; zip -r ${DIST_DIR}/lambdas/$*.zip * From cca82f453876dd59732b15968cd28f77f80a7a68 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Mon, 20 May 2024 07:07:17 -0400 Subject: [PATCH 36/37] removing extra print --- backend/lambdas/api/repo/tests/test_process_gitlab_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py index 4679c3e9..2ec4ae8c 100644 --- a/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py +++ b/backend/lambdas/api/repo/tests/test_process_gitlab_utils.py @@ -76,7 +76,7 @@ def test_build_query_no_branch(self): query_list, variables, _, _ = process_gitlab_utils.build_queries( req_list=request_list, authz=AUTHZ, service=SERVICE, batch_queries=True ) - print(query_list[0]) + self.assertEqual(query_list[0], GITLAB_QUERY_NO_BRANCH_EXPECTED) self.assertEqual(variables, {"repo0": "testorg/artemis"}) From 8817b847a6957b97821c5c080ecf3448a83f6e74 Mon Sep 17 00:00:00 2001 From: Matt Fleury Date: Mon, 20 May 2024 08:30:02 -0400 Subject: [PATCH 37/37] using correct requests --- backend/lambdas/api/system_services/README.md | 2 +- .../lambdas/api/system_services/system_services/util/service.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/lambdas/api/system_services/README.md b/backend/lambdas/api/system_services/README.md index b5f4ed4c..4f1acb97 100644 --- a/backend/lambdas/api/system_services/README.md +++ b/backend/lambdas/api/system_services/README.md @@ -1,4 +1,4 @@ -# Service Management +# Service Status API endpoints for retrieving the status (reachability, authentication, etc.) of system services. diff --git a/backend/lambdas/api/system_services/system_services/util/service.py b/backend/lambdas/api/system_services/system_services/util/service.py index a34c4291..9bccdd5b 100644 --- a/backend/lambdas/api/system_services/system_services/util/service.py +++ b/backend/lambdas/api/system_services/system_services/util/service.py @@ -160,7 +160,7 @@ def _test_github(self, key: str): else: query = "viewer { login }" - response = requests.post( + response = self._request.post( url=self._service["url"], headers=headers, json={"query": query, "variables": variables},